jquery Mobile点击显示加载等待效果

时间:2022-02-10 22:15:26

点击某个按钮或链接时,触发等待加载效果:

  1. <script>
  2. <!--
  3. $(document).bind("mobileinit", function(){
  4. });
  5. $( function() {
  6. //默认设置,一个小圈圈在转
  7. $('#default').live( 'tap', function() {
  8. $.mobile.loadingMessageTextVisible = false;
  9. $.mobile.showPageLoadingMsg();
  10. } );
  11. //小圈子外围加矩形的背景
  12. $('#loadingMessageTextVisible').live( 'tap', function() {
  13. $.mobile.loadingMessageTextVisible = true;
  14. $.mobile.loadingMessageTheme = 'a';
  15. $.mobile.showPageLoadingMsg();
  16. } );
  17. //矩形背景样式为e
  18. $('#loadingMessageTheme').live( 'tap', function() {
  19. $.mobile.loadingMessageTextVisible = true;
  20. $.mobile.loadingMessageTheme = 'e';
  21. $.mobile.showPageLoadingMsg();
  22. } );
  23. //小圈子下面加上文字
  24. $('#customText').live( 'tap', function() {
  25. $.mobile.loadingMessageTextVisible = true;
  26. $.mobile.showPageLoadingMsg( 'a', "Please wait..." );
  27. } );
  28. //只有文字,没有小圈子在转
  29. $('#noSpinner').live( 'tap', function() {
  30. $.mobile.loadingMessageTextVisible = true;
  31. $.mobile.showPageLoadingMsg( 'a', "Please wait...", true );
  32. } );
  33. } );
  34. -->
  35. </script>

HTML代码:

  1. <p><a id="default" data-role="button">Default Loader</a></p>
  2. <p><a id="loadingMessageTextVisible" data-role="button">loadingMessageTextVisible = true</a></p>
  3. <p><a id="loadingMessageTheme" data-role="button">loadingMessageTheme = 'e'</a></p>
  4. <p><a id="customText" data-role="button">Custom Text</a></p>
  5. <p><a id="noSpinner" data-role="button">No Spinner</a></p>

http://www.elated.com/res/File/articles/development/javascript/jquery/jquery-mobile-1-1-smoother-faster-nicer/loading.html

http://my.oschina.net/geomen/blog/60259

jqueryMobile插件仿iPhone滑动出现删除按钮 
http://www.oschina.net/code/snippet_152736_17798

jquery mobile 侧滑插件 
http://mmenu.frebsite.nl/

jQuery Mobile十大常用技巧 
http://blog.csdn.net/hezudao25/article/details/8052785

jquery mobile 中文手册API 
http://www.lampweb.org/jquerymobile/5/11.html

JqueryMobile 动态添加元素css丢失的终极解决办法 
http://blog.csdn.net/lgd5979/article/details/7161339

Bootstrap中文网 
http://v3.bootcss.com/

jQuery插件库 
http://www.jq22.com/

移动开发必备!15款jQuery Mobile插件 
http://www.csdn.net/article/2013-11-22/2817596-15-jquery-mobile-plugins-for-mobile-dev/1