js定时器实现右下角弹窗广告缓慢弹出

主要利用js的定时器实现对html元素的定位进行改动,以达到缓慢出现在右下角的效果。
效果如下:
在这里插入图片描述

代码如下:

html和js部分:

<body>
<div id="box" style="position: fixed;right: 0;bottom:-300px">
    <div class="head">系统提醒您
        <i class="iconfont stop">&#xe677;</i>
    </div>
    <div class="body">
        <img src="virus2.png" alt="">
    </div>
    <div class="virusName">
        <p class="clear">发现木马,建议立即清除</p>
        <p class="name">木马文件 :
            <span>C:\ProgramData\Steam</span>
        </p>
        <p class="name">木马名称 :
            <span>herosuperProsVirus.exe</span>
        </p>
    </div>
    <div class="bottom">
        <div class="new">添加信任</div>
        <button class="right" type="button">立刻清除</button>
        <button type="button">更多</button>
    </div>
</div>
<script>
    //关闭按钮
    var stop = document.getElementsByClassName('stop')[0];
    var box = document.getElementById('box');
    stop.onclick = function () {
        box.style.display = 'none'
    };
    //设置定时器
    var virus = setInterval(up, 20);

    function up() {
        var speed = 2;
        var bottom = parseInt(box.style.bottom) + speed;
        box.style.bottom = bottom + 'px';
        //console.log(bottom);
        if (bottom >= 0) {
            clearInterval(virus)
        }
    }
</script>

css部分,内部样式:

    <style>
        * {
            margin: 0;
            padding: 0;
            text-align: center;
            text-decoration: none;
        }

        #box {
            width: 400px;
            height: 300px;
        }

        .head {
            width: 400px;
            height: 40px;
            background-color: rgb(241, 53, 8);
            font-size: 22px;
            line-height: 41px;
            color: white;
            padding-left: 10px;
            box-sizing: border-box;
            letter-spacing: 4px;
        }

        .stop {
            font-size: 26px;
            padding-left: 215px;
            text-align: right;
            cursor: pointer;
        }

        .body {
            width: 400px;
            height: 110px;
            background-color: rgb(241, 53, 8);
        }

        img {
            width: 100%;
            height: 100%;
        }

        .virusName {
            width: 400px;
            height: 100px;
            background-color: white;
        }

        .clear {
            color: rgb(241, 53, 8);
            font-size: 26px;
            letter-spacing: 2px;
            font-weight: 700;
        }

        .name {
            font-weight: 700;
            margin-top: 8px;
        }

        span {
            font-weight: normal;
            color: rgb(241, 53, 8);
        }

        .bottom {
            width: 400px;
            height: 50px;
            background-color: rgb(240, 240, 240);
        }

        .new {
            text-align: left;
            color: rgb(0, 0, 204);
            font-size: 18px;
            line-height: 50px;
            float: left;
        }

        button {
            width: 70px;
            height: 40px;
            background-color: rgb(227, 237, 250);
            float: left;
            margin-top: 5px;
            font-size: 18px;
            letter-spacing: 1px;
            border: solid 1px rgb(168, 179, 186);
        }

        .right {
            margin-left: 152px;
            width: 100px;
        }
    </style>

引用的一张图片如下,图片来源(摄图网):在这里插入图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

百事可口

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值