在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
前端开发经常会遇到的一个问题就是制作一个弹框来向用户提示信息,在这个弹框弹出的同时,往往会伴有一个灰色的遮罩层挡住页面内容,同时整个页面被这层遮罩盖住,不可点击也不可滚动。 方案一:控制overflow禁止滚动(ios不兼容) 要制作这个效果在PC端非常简单,只需要设置html的高度为100%占满屏幕,并且将html的overflow设置为hidden,即可保证页面不可滚动。 html.style.overflow="hidden"; html.style.height="100%"; body.style.overflow="hidden"; body.style.height="100%"; 原因是因为移动端是基于touch事件,要禁止基于touch事件的滚动,我们必须在对html禁止滚动的基础之上,再将需要禁止滚动的内容上再增加一个包裹层块级元素,然后将这个包裹层块级元素高度设置为100%并设置overflow:hidden;,那么在这里我们认为body包裹了整个页面,正是我们需要的块级元素,将他也设置为禁止滚动,就可以保证移动端页面的滑动时间不会触发页面滚动。 html.style.overflow="visible"; html.style.height="auto"; body.style.overflow="visible"; body.style.height="auto"; 这些样式正是对应CSS属性的默认样式。 方案二:绝对/固定布局阻止手势滚动事件冒泡(PC端无效) 正是因为移动端的滚动基于屏幕的touch事件,因此诞生了方案二(手机淘宝就使用了这种方案)。
下面贴上方案二的完整测试源代码: <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title></title> <style> .main-content{ position:relative; width:100%; background-color:#ccc; height:2000px; } .main-content .trigger{ width:200px; height:100px; font-size:30px; color:#000; } .main-content .bottom{ position:absolute; bottom:0; left:0; width:100%; height:200px; background-color:red; } .black-shield{ position:fixed; top:0; left:0; width:100%; height:100%; background-color:rgba(10,10,10,0.4); z-index:10; } .black-shield .info{ font-size:40px; color:#000; border:1px solid; z-index:20; } </style> </head> <body> <div class="main-content"> <button id="trigger" class="trigger">开/关</button> <div class="bottom"></div> </div> <div id="shield" class="black-shield" style="display:none;"> <div id="info" class="info">当前黑幕弹出后,页面应该不可滑动,点击当前文本,关闭黑幕</div> </div> <script> function test2(){ var showShield=false; var shield=document.getElementById("shield"); var trigger=document.getElementById("trigger"); var info=document.getElementById("info"); var body=document.querySelector("body"); var html=document.querySelector("html"); //点击显示黑幕 trigger.addEventListener("click",function(){ shield.style.display="block"; },false); //点击关闭黑幕 info.addEventListener("touchstart",function(){ shield.style.display="none"; },false); //在黑幕层阻挡touch事件 shield.addEventListener("touchstart",function(e){ e.stopPropagation(); e.preventDefault(); },false); } test2(); </script> </body> </html> 到此这篇关于前端页面弹框遮罩禁止页面滚动的文章就介绍到这了,更多相关弹框遮罩禁止页面滚动内容请搜索极客世界以前的文章或继续浏览下面的相关文章,希望大家以后多多支持极客世界! |
2023-10-27
2022-08-15
2022-08-17
2022-09-23
2022-08-13
请发表评论