- 禁止滚动条滚动
stop(){
var mo = function(e) { e.preventDefault(); };
document.body.style.overflow = 'hidden';
document.addEventListener("touchmove",mo,false);
}
- 恢复滚动条滚动
move(){
var mo=function(e) { e.preventDefault(); };
document.body.style.overflow = '';
document.removeEventListener("touchmove",mo,false);
},
- 在div滚动时调用stop() , 在div停止滚动时调用move()
网友评论