gpt4 book ai didi

html - Jquery 移动应用程序中的闪烁页面转换

转载 作者:可可西里 更新时间:2023-11-01 14:54:17 27 4
gpt4 key购买 nike

如何克服 Web 应用中移动页面转换期间的闪烁转换/白色闪光/跳转?我使用 Jquerymobile 和 Phonegap 的 (.js) 文件。 https://github.com/jquery/jquery-mobile/issues/4024 上没有发布解决方案或其他网站为我工作。我不使用单独的 jqueryTransition.js 文件。任何帮助真的很感激。

最佳答案

防止“闪烁”的唯一真正方法是完全禁用 jQuery Mobile 页面转换。在<head>在您的文档中,放置此代码:

// load jQuery
<script src="http://code.jquery.com/jquery-1.8.2.min.js"></script>

// load your custom jQuery Mobile Defaults
<script type="text/javascript" src="mobile/js/mobile-site-custom-jqm-defaults.js"></script>

// load jQuery Mobile
<script src="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.js"></script>

// load your scripts.js (your javascript & functions, etc.)
<script type="text/javascript" src="mobile/js/script.js"></script>

要禁用转换,在 mobile-site-custom-jqm-defaults.js 中文件,放置此代码:

$(document).bind("mobileinit", function(){
$.extend( $.mobile , {
defaultPageTransition: 'none'
});
});

关于html - Jquery 移动应用程序中的闪烁页面转换,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13195433/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com