123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- $("body").on("touchmove", function(e) {
- e.preventDefault();
- }).on("mousewheel", function(e) {
- e.preventDefault();
- e.stopPropagation();
- });
- var html = $('html');
- html.css('overflow', 'hidden');
- var loadedState = false;
- var selfMotion = false;
- setTimeout(function () {
- $(".bj-loading").addClass("on");
- $("body").off('mousewheel').off('touchmove');
- $('html').css('overflow', 'visible');
- },1000);
|