我的问题是在 2 个单独的 html 页面名称 index.html 和 mainpage.html 之间的转换之间出现白屏。任何人都可以请这个dissapear。我已经放入了jquery函数来淡入淡出!代码如下:
PS:我使用的是windows phone 7模拟器!
HTML:
<a id="loginbtn" data-role="button" href="MainPage.html"
style="margin-left: 60px;" class="ui-btn-up-a"> Log in</a>
查询:
$(document).ready(function () {
$("body").css("display", "none");
$("body").fadeIn(3000);
$("a#loginbtn").click(function (event) {
event.preventDefault();
linkLocation = this.href;
$("body").fadeOut(200, redirectPage);
});
function redirectPage() {
window.location = linkLocation;
}
});
我一直在以下链接,但我对使用 Cordova/PhoneGap 非常陌生,所以我不明白,也许有人向我解释会很有帮助!
链接:
淡出有效,淡入!但在淡出后出现白屏并加载新页面。
使用:HTML5/CSS/Javascript/Jquerymobile/Jquery.1.7/JqueryMobile.1.2.0
提前致谢