快乐小demo-JS实现烟花特效(程序员表白必备)

效果如图(动态效果自行执行)

在这里插入图片描述

在这里插入图片描述

代码如下直接cv即可(欢迎指正)

不懂的地方也可以评论问我

<!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>
        #container {
            width: 80%;
            height: 600px;
            border: 1px red solid;
            position: relative;
            margin: 20px auto;
            cursor: pointer;
            background: black;
        }

        .fire {
            background: red;
            position: absolute;
            /* 设置bottom时,top获取为最大值,减去鼠标点击位置 */
            bottom: 0px;
            width: 6px;
            height: 6px;

        }

        .small-fire {
            width: 10px;
            height: 10px;
            position: absolute;
            border-radius: 50%;
        }
    </style>
</head>

<body>
    <div id="container">

    </div>
    <script>
        var oCont = document.querySelector('#container');
        oCont.onclick = function (e) {
            // 创建对象保存点击位置
            var pos = {};
            pos.x = e.offsetX;
            pos.y = e.offsetY;
            // console.log(pos);
            new Fire(oCont, pos);
        };
        function Fire(oCont, pos) {
            this.oCont = oCont;
            this.pos = pos;
            var oDivB = document.createElement('div');
            oDivB.className = 'fire';
            // 计算左侧距离
            oDivB.style.left = this.pos.x + 'px';
            oDivB.style.backgroundColor = this.getColor();
            //节点的追加
            this.oCont.append(oDivB);
            //避免this指向全局
            var that = this;
            this.move(oDivB, { top: this.pos.y }, function () {
                // 回调函数清除大的引出小的
                oDivB.remove();
                that.smallFire();
            })
        }
        //小烟花
        Fire.prototype.smallFire = function () {
            for (var i = 0; i < 12; i++) {
                var oDivS = document.createElement('div');
                //添加小礼花类名
                oDivS.className = 'small-fire';
                oDivS.style.backgroundColor = this.getColor();
                this.oCont.append(oDivS);
                //获取初始位置(鼠标点击位置)
                oDivS.style.top = this.pos.y + 'px';
                oDivS.style.left = this.pos.x + 'px';
                //设置偏移位置一横一竖1q一个终点位置
                var left = this.rand(0, this.oCont.offsetWidth - oDivS.offsetWidth);
                var top = this.rand(0, this.oCont.offsetHeight - oDivS.offsetHeight)
                that = this;
                (function (ele) {
                    that.move(ele, {
                        left: left,
                        top: top
                    }, function () {
                        ele.remove();
                    });

                })(oDivS)
            }
        }
        // 移动函数(大小烟火的移动)-----------------------------------
        Fire.prototype.move = function (fireObj, json, callBack) {
            // // 设置开关r
            // var flag = true;
            var times = '';
            // 避免定时器累计
            clearInterval(times);
            that = this;
            times = setInterval(() => {
                for (var attr in json) {
                    var nowSize = parseInt(that.getStyle(fireObj, attr));
                    var speed = (json[attr] - nowSize) / 7;
                    speed = speed > 0 ? Math.ceil(speed) : Math.floor(speed);
                    //为什么这里不加position(因为上面设置过了直接添加的属性)
                    fireObj.style[attr] = speed + nowSize + 'px';
                    if (json[attr] == nowSize) {
                        clearInterval(times);
                        callBack();
                    }

                }
            }, 30);
        }



        // __________随机颜色的获取————————————————————————————
        Fire.prototype.getColor = function () {
            var str = '#';
            for (var i = 0; i < 6; i++) {
                str += (Math.round(Math.random() * 16)).toString(16);
            }
            return str;
        }

        // ================获取内联样式=============================
        Fire.prototype.getStyle = function (ele, attr) {
            if (ele.currentStyle) {
                return ele.currentStyle[attr];
            } else {
                return getComputedStyle(ele, false)[attr];
            }
        }
        /******随机数的生成*******/
        Fire.prototype.rand = function (min, max) {
            return parseInt(Math.random() * (max - min) + min);
        }
        // console.log(getColor());
    </script>
</body>

</html>
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值