// 禁止滑动
        stopLoop(){
            var top=$(window).scrollTop();//这是当前滚动的页面滚动条位置
            $("body").css({
                "position":"fixed",
                "width":"100%",
                "top":top*-1 //此处为当前需要定住的位置
            });
        },
        // 允许滑动
        startLoop(){
            $("body").css({
                "position":"static"
            });
        },

 

posted on 2019-10-10 13:32  刘世涛6192  阅读(128)  评论(0编辑  收藏  举报