canvas:下雪

demo

HTML

<body>
<canvas id="canvas" width="1000" height="750" style="background-color: gainsboro"></canvas>
</body>

JS 行为定义canvas的渲染

<script>
    (()=>{
        document.addEventListener('DOMContentLoaded',function(){
            //业务
            let canvas = document.querySelector('#canvas');
            let ctx = canvas.getContext('2d');
            let circles = [];

            setInterval(function () {
                genareteCircle();
            },50);

            setInterval(function () {
                circleRun();
            },16);
            //生成雪花
            function genareteCircle() {
                let circle = {};
                circle.x = Math.floor(Math.random()*canvas.width);
                circle.y = Math.floor(Math.random()*canvas.height);
                // circle.y = 0;
                circle.r = Math.ceil(Math.random()* 10);
                circle.deltay = 0;
                // circle.r = 8;
                circle.color = {};
                circle.color.r = Math.floor(Math.random()*256);
                circle.color.g = Math.floor(Math.random()*256);
                circle.color.b = Math.floor(Math.random()*256);
                circle.color.a = 1;
                circles.push(circle);
            }
            // 雪花运动
            function circleRun(){
                ctx.clearRect(0,0,canvas.width,canvas.height);
                circles.forEach(function (circle, index) {
                    
                    //增量逐渐增加
                    circle.deltay++;

                    ctx.beginPath();
                    //绘制圆的圆心坐标逐渐增大(视觉上逐渐下降)
                    ctx.arc(circle.x,(circle.y+circle.deltay),(circle.r),0,Math.PI*2);
                    ctx.fillStyle = 'rgba('+circle.color.r+','+circle.color.g+','+circle.color.b+','+circle.color.a+')';
                    ctx.fill();
                });
            }
        });
    })();
</script>

哎呀,效果很抽象,但雪花的行为是有了,好不容易可以写写博客了,虽然差不多只有我自己看,?

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值