美文网首页工具类文章
css 粒子动画效果库

css 粒子动画效果库

作者: 精神病患者link常 | 来源:发表于2021-08-12 19:26 被阅读0次

    用来创建一个纸屑视觉效果或纸屑动画:https://github.com/yiliansource/party-js
    效果演示地址:http://www.bootstrapmb.com/item/10837

    背景粒子特效:https://github.com/VincentGarreau/particles.js/

    particles.js效果图
    image.png

    引入 js文件夹 particles.js particles.json即可

    #particles-js{
            width: 100%;
            height: 100%;
            background-color: #b61924;
            /* background-image: url('img/123.jpg'); */
            background-size: 100% 100%;
            background-position: center;
            background-repeat: no-repeat;
            display: flex;
            flex-direction: column;
          }
    <body id="particles-js">
        <script src="particles/particles.js"></script> 注意路径
        <script src="particles/js/app.js"></script> 注意路径
    </body>
    

    Particles BG 这是一个粒子动画背景的组件。https://github.com/lindelof/particles-bg

    相关文章

      网友评论

        本文标题:css 粒子动画效果库

        本文链接:https://www.haomeiwen.com/subject/fftrbltx.html