loading.js 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. //
  2. //$("body").on("touchmove", function(e) {
  3. // e.preventDefault();
  4. //}).on("mousewheel", function(e) {
  5. // e.preventDefault();
  6. // e.stopPropagation();
  7. //
  8. //});
  9. //var html = $('html');
  10. //html.css('overflow', 'hidden');
  11. //var loadedState = false;
  12. //var selfMotion = false;
  13. //$(window).load(function() {
  14. // setTimeout(function () {
  15. // if (loadedState) {
  16. // $(".bj-loading").addClass("on");
  17. // $("body").off('mousewheel').off('touchmove');
  18. // $('html').css('overflow', 'visible');
  19. // }else{
  20. // $(".load-box .bj-digest").addClass('on');
  21. // selfMotion = true;
  22. // }
  23. // },100);
  24. //});
  25. //
  26. //document.onreadystatechange = changeState;//当页面加载状态改变的时候执行这个方法.
  27. //function changeState(){
  28. // if(document.readyState == 'complete'){ //当页面加载状态
  29. // loadedState = true;
  30. // if (selfMotion) {
  31. // $(".bj-loading").addClass("on");
  32. // $("body").off('mousewheel').off('touchmove');
  33. // $('html').css('overflow', 'visible');
  34. // };
  35. // }
  36. //}
  37. $("body").on("touchmove", function(e) {
  38. e.preventDefault();
  39. }).on("mousewheel", function(e) {
  40. e.preventDefault();
  41. e.stopPropagation();
  42. });
  43. var html = $('html');
  44. html.css('overflow', 'hidden');
  45. var loadedState = false;
  46. var selfMotion = false;
  47. setTimeout(function () {
  48. $(".bj-loading").addClass("on");
  49. $("body").off('mousewheel').off('touchmove');
  50. $('html').css('overflow', 'visible');
  51. },1000);