前端例程20220913:粒子飘落效果动画背景

Posted Naisu Xu

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了前端例程20220913:粒子飘落效果动画背景相关的知识,希望对你有一定的参考价值。

演示

原理

使用JS动态创建块元素作为粒子,动态设置其位置、大小、颜色等属性,动态设置每个粒子的动画。

代码

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
    <title>粒子飘落效果动画背景</title>

    <style>
        * 
            padding: 0;
            margin: 0;
            user-select: none;
            box-sizing: border-box;
        

        html,
        body 
            height: 100vh;
        
    </style>

    <style>
        .bg 
            width: 100vw;
            height: 100vh;
            background: radial-gradient(#003010, #000000);
            overflow: hidden;
            position: relative;
        

        .bg>div 
            position: absolute;
            border-radius: 50%;
        
    </style>
</head>

<body>
    <div class="bg">
        <!-- 内层div元素作为粒子(particle)
        <div></div>
        <div></div>
        ... -->
    </div>

    <script>
        const PARTICLE_SUM = 32; // 粒子总数量
        const bg = document.querySelector(".bg");
        const particle_style = document.createElement('style');
        document.head.appendChild(particle_style);

        for (let i = 0; i < PARTICLE_SUM; i++) 
            // 创建粒子
            particle = document.createElement("div");

            // 下面设置粒子属性
            let size = Math.random() * 4;
            particle_style.sheet.insertRule(`
                .bg>div:nth-child($i + 1) 
                    top: $Math.random() * 100vh;
                    left: $Math.random() * 100vw;
                    width: $size + 2vh;
                    height: $size + 2vh;
                    background: rgba($Math.random() * 255, $Math.random() * 255, $Math.random() * 255, $Math.random());
                    box-Shadow: 0 0 $Math.random() * 6vh rgba($Math.random() * 255, $Math.random() * 255, $Math.random() * 255, $Math.random());
                    opacity: 0;
                    animation: anime$i 8s linear $Math.random() * 8s infinite;
                
            `);

            // 下面生成帧动画
            let xoffsetbase = Math.random() * 5;
            let yoffsetbase = Math.random() * 5 + 10;
            particle_style.sheet.insertRule(`
            @keyframes anime$i 
                0%  opacity: 0; translate: calc($xoffsetbase - 2.5vw) calc($-yoffsetbasevh); 
                25%  opacity: 1; 
                50%  opacity: 0; translate: 0 0; 
                75%  opacity: 1; 
                100%  opacity: 0; translate: calc($xoffsetbase + 2.5vw) calc($yoffsetbasevh); 
            
            `);

            // 将粒子插入到背景
            bg.appendChild(particle);
        
    </script>
</body>

</html>

更多例程

更多例程可以参考下面代码仓库:
https://github.com/NaisuXu/front-end-web-examples

以上是关于前端例程20220913:粒子飘落效果动画背景的主要内容,如果未能解决你的问题,请参考以下文章

227.纯CSS粒子背景动画

229.纯CSS粒子背景动画-03

228.纯CSS粒子背景动画2

Silverlight & Blend动画设计系列十三:三角函数(Trigonometry)动画之飘落的雪花(Falling Snow)

前端 Canvas 训练营第一期:鼠标交互粒子背景效果

前端 Canvas 训练营第一期:鼠标交互粒子背景效果