模态框背后内容静止滚动解决方法

前端之家收集整理的这篇文章主要介绍了模态框背后内容静止滚动解决方法前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

<table class="text"><tr class="li1">
<td class="ln"><pre class="de1">1
2
3
4
5
6
7
8
9
10
11
12
13

显示的时候设置$("body,html").css({"overflow":"hidden"});         在模态关闭的时候设置$("body,html").css({"overflow":"scroll"}); 移动端:         在模态显示的时候设置window.addEventListener('touchmove',stopMove,false);         在模态关闭的时候设置window.removeEventListener('touchmove',false);    function stopMove(e){                 e.preventDefault();                 e.stopPropagation();    }   移动端tap点破事件处理 使用https://github.com/ftlabs/fastclick 将tap设置为click 原文链接:/note/420804.html

猜你在找的程序笔记相关文章