美文网首页前端
前端页面需要遮罩层

前端页面需要遮罩层

作者: 王镇_ee87 | 来源:发表于2020-12-18 08:49 被阅读0次
    遮罩层css 点击以后页面不能操作,直到时间结束
    .box{
                position: fixed;
                z-index: 200;
                width: 100%;
                height: 100%;
                background: rgba(0,0,0,0.2);
                display: none;
            }
    
    效果图
    image
    js部分代码
    image
    h5部分 第一个div 遮罩层,点击事件在下一个div中,自己写逻辑
    image

    相关文章

      网友评论

        本文标题:前端页面需要遮罩层

        本文链接:https://www.haomeiwen.com/subject/ghzbwktx.html