当前位置:   article > 正文

用HTML+CSS+JS,写一个公告提示框,警告窗,广告窗(可关闭)_html广告弹窗代码

html广告弹窗代码

效果图:

70b3837a035d4b49b75e7ee9f7e43a92.png

 HTML:

    <div class="box">
        <h2>标题</h2>
        <p>文本</p>
        <div class="box2">X</div>
    </div>

CSS:

    ​        .box{
            position: relative;
            width: 300px;
            height: 150px;
            background-image: linear-gradient(
                #547ad4,
                #7954df
            );
            border-radius: 20px;
            color: #ffffff;
            text-align: center;
        }
        .box2{
            position: absolute;
            right: 10px;
            top: 10px;
            width: 30px;
            height: 30px;
            background-color: #fff;
            border-radius: 50%;
            line-height: 30px;
            text-align: center;
            color: #000;
        }

​​​​​​JS:

const box=document.querySelector('.box')
const box2=document.querySelector('.box2')
box2.addEventListener('click',function(){
        box.style.display='none'
 })

全部代码:

 

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <style>

        .box{
            position: relative;
            width: 300px;
            height: 150px;
            background-image: linear-gradient(
                #547ad4,
                #7954df
            );
            border-radius: 20px;
            color: #ffffff;
            text-align: center;
        }
        .box2{
            position: absolute;
            right: 10px;
            top: 10px;
            width: 30px;
            height: 30px;
            background-color: #fff;
            border-radius: 50%;
            line-height: 30px;
            text-align: center;
            color: #000;
        }
    </style>
</head>
<body>
    <div class="box">
        <h2>标题</h2>
        <p>文本</p>
        <div class="box2">X</div>
    </div>

    <script>
        const box=document.querySelector('.box')
        const box2=document.querySelector('.box2')
        box2.addEventListener('click',function(){
            box.style.display='none'
        })
    </script>
</body>
</html>

 

⭐️⭐️⭐️⭐️⭐️⭐️⭐️⭐️⭐️⭐️⭐️⭐️⭐️

制作不易,给个赞吧!

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/weixin_40725706/article/detail/335052
推荐阅读
相关标签
  

闽ICP备14008679号