欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

javascript:自定义弹窗的写法

程序员文章站 2022-04-04 08:13:35
...

项目中经常出现广告弹窗,记录下简单弹框写法。

基本html结构:

<div class="popBox">
    <div class="popBox-mask"></div>
    <div class="popBox-content">
	<!-- 书写弹框内容 -->
    </div>
</div>
css:

.popBox-mask{
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    opacity: .6;
    z-index: 999;
    background-color: #000;
}
.popBox-content{
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    z-index: 999;
}
所有的弹框可以复用以上代码,各个弹框要加上唯一标识。具体demo如下:
<!doctype html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport"
          content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>Document</title>
    <style>
        /*通用*/
        .popBox-mask{
            position: fixed;
            left: 0;
            right: 0;
            top: 0;
            bottom: 0;
            opacity: .6;
            z-index: 999;
            background-color: #000;
        }
        .popBox-content{
            position: fixed;
            left: 50%;
            top: 50%;
            transform: translate(-50%,-50%);
            z-index: 999;
        }
        /*各个弹框下的样式可以自己更改*/
        #popBox-demo .popBox-content{
            width: 600px;
            height: 400px;
            background-color: #fff;
            text-align: center;
        }
        #popBox-demo p{
            line-height: 400px;
            margin: 0;
        }
        #popBox-demo .btn-close{
            position: absolute;
            top: 20px;
            right: 20px;
        }
    </style>
</head>
<body>
    <button onclick="showPopBox()">出现弹框</button>
    <div class="popBox" id="popBox-demo" style="display:none">
        <div class="popBox-mask"></div>
        <div class="popBox-content">
            <p>很丑的例子</p>
            <a href="javascript:void(0)" class="btn-close" onclick="hidePopBox()">关闭</a>
        </div>
    </div>
    <script>
        //显示弹框
        function showPopBox(){
            document.getElementById('popBox-demo').style.display = 'block';
        }
        //关闭弹框
        function hidePopBox(){
            document.getElementById('popBox-demo').style.display = 'none';
        }
    </script>
</body>
</html>
效果图:

javascript:自定义弹窗的写法