自学内容网 自学内容网

无弹窗直接给页面加透明模板,使其不可点击

<html>
<head>
<style>
    .mengban {
        height: 100vh;
        width: 100vw;
        position: fixed;
        z-index: 1000000;
        background-color: #fff0;
        top: 0;
        left: 0;
    }
</style>
</head>

<body>
<div id="body"><a href="http://www.baidu.com/">这里是网页真实内容</a></div>
<div class="mengban">这是蒙版,信息需留空</div>
</body>
</html>

如上所示,可实现效果:

无弹窗样式蒙版,可直接给页面加透明模板,使其页面中的链接均不可点击,类似图片效果


原文地址:https://blog.csdn.net/luoluoyu2013/article/details/140721762

免责声明:本站文章内容转载自网络资源,如本站内容侵犯了原著者的合法权益,可联系本站删除。更多内容请关注自学内容网(zxcms.com)!