particles.js插件 particles.json配置 两种样式参考

编程入门 行业动态 更新时间:2024-10-09 10:20:32

particles.js插件 particles.json配置 <a href=https://www.elefans.com/category/jswz/34/1768716.html style=两种样式参考"/>

particles.js插件 particles.json配置 两种样式参考

第一种

 particles.json配置如下:

{

  "particles": {

      "number": {

          "value": 88,

          "density": {

              "enable": true,

              "value_area": 700

          }

      },

      "color": {

          "value": ["#aa73ff", "#f8c210", "#83d238", "#33b1f8"]

      },

      "shape": {

          "type": "circle",

          "stroke": {

              "width": 0,

              "color": "#000000"

          },

          "polygon": {

              "nb_sides": 15

          },

          "image": {

              "src": "img/github.svg",

              "width": 100,

              "height": 100

          }

      },

      "opacity": {

          "value": 0.5,

          "random": false,

          "anim": {

              "enable": false,

              "speed": 5,

              "opacity_min": 0.15,

              "sync": false

          }

      },

      "size": {

          "value": 2.5,

          "random": false,

          "anim": {

              "enable": true,

              "speed": 2,

              "size_min": 0.15,

              "sync": false

          }

      },

      "line_linked": {

          "enable": true,

          "distance": 110,

          "color": "#33b1f8",

          "opacity": 0.25,

          "width": 1

      },

      "move": {

          "enable": true,

          "speed": 1.6,

          "direction": "none",

          "random": false,

          "straight": false,

          "out_mode": "bounce",

          "bounce": false,

          "attract": {

              "enable": false,

              "rotateX": 600,

              "rotateY": 1200

          }

      }

  },

  "interactivity": {

      "detect_on": "canvas",

      "events": {

          "onhover": {

              "enable": false,

              "mode": "grab"

          },

          "onclick": {

              "enable": true,

              "mode": "push"

          },

          "resize": true

      },

      "modes": {

          "grab": {

              "distance": 400,

              "line_linked": {

                  "opacity": 1

              }

          },

          "bubble": {

              "distance": 400,

              "size": 40,

              "duration": 2,

              "opacity": 8,

              "speed": 3

          },

          "repulse": {

              "distance": 200,

              "duration": 0.4

          },

          "push": {

              "particles_nb": 10

          },

          "remove": {

              "particles_nb": 2

          }

      }

  },

  "retina_detect": true

}

第二种

 

  particles.json配置如下:

{

  "particles": {

    "number": {

      "value": 80,

      "density": {

        "enable": true,

        "value_area": 800

      }

    },

    "color": {

      "value": "#ffffff"

    },

    "shape": {

      "type": "polygon",

      "stroke": {

        "width": 0,

        "color": "#000000"

      },

      "polygon": {

        "nb_sides": 5

      },

      "image": {

        "src": "img/github.svg",

        "width": 100,

        "height": 100

      }

    },

    "opacity": {

      "value": 0.5,

      "random": false,

      "anim": {

        "enable": false,

        "speed": 1,

        "opacity_min": 0.1,

        "sync": false

      }

    },

    "size": {

      "value": 3,

      "random": true,

      "anim": {

        "enable": false,

        "speed": 40,

        "size_min": 0.1,

        "sync": false

      }

    },

    "line_linked": {

      "enable": true,

      "distance": 150,

      "color": "#ffffff",

      "opacity": 0.4,

      "width": 1

    },

    "move": {

      "enable": true,

      "speed": 6,

      "direction": "none",

      "random": false,

      "straight": false,

      "out_mode": "out",

      "bounce": false,

      "attract": {

        "enable": false,

        "rotateX": 600,

        "rotateY": 1200

      }

    }

  },

  "interactivity": {

    "detect_on": "canvas",

    "events": {

      "onhover": {

        "enable": true,

        "mode": "repulse"

      },

      "onclick": {

        "enable": true,

        "mode": "push"

      },

      "resize": true

    },

    "modes": {

      "grab": {

        "distance": 400,

        "line_linked": {

          "opacity": 1

        }

      },

      "bubble": {

        "distance": 400,

        "size": 40,

        "duration": 2,

        "opacity": 8,

        "speed": 3

      },

      "repulse": {

        "distance": 200,

        "duration": 0.4

      },

      "push": {

        "particles_nb": 4

      },

      "remove": {

        "particles_nb": 2

      }

    }

  },

  "retina_detect": false

}

 参数解释

{"particles": {"number": {"value": 160,//数量"density": {"enable": true, //启用粒子的稀密程度"value_area": 800 //区域散布密度大小}},"color": {"value": "#ffffff" //原子的颜色},"shape": {"type": "circle", //原子的形状 "circle" ,"edge" ,"triangle" ,"polygon" ,"star" ,"image" ,["circle", "triangle", "image"]"stroke": {"width": 0, //原子的宽度"color": "#000000" //原子颜色},"polygon": {"nb_sides": 5 // 原子的多边形边数},"image": {"src": "img/github.svg", // 原子的图片可以使用自定义图片 "assets/img/yop.svg" , ".png""width": 100, //图片宽度"height": 100 //图片高度}},"opacity": {"value": 1, //不透明度"random": true, //随机不透明度"anim": {"enable": true, //渐变动画"speed": 1, // 渐变动画速度"opacity_min": 0, //渐变动画不透明度"sync": true }},"size": {"value": 3, //原子大小"random": true, // 原子大小随机"anim": {"enable": false, // 原子渐变"speed": 4, //原子渐变速度"size_min": 0.3, "sync": false}},"line_linked": {"enable": false, //连接线"distance": 150, //连接线距离"color": "#ffffff", //连接线颜色"opacity": 0.4, //连接线不透明度"width": 1 //连接线的宽度},"move": {"enable": true, //原子移动"speed": 1, //原子移动速度"direction": "none", //原子移动方向   "none" ,"top" ,"top-right" ,"right" ,"bottom-right" ,"bottom" ,"bottom-left" ,"left" ,"top-left""random": true, //移动随机方向"straight": false, //直接移动"out_mode": "out", //是否移动出画布"bounce": false, //是否跳动移动"attract": { "enable": false, // 原子之间吸引"rotateX": 600, //原子之间吸引X水平距离"rotateY": 600  //原子之间吸引Y水平距离}}},"interactivity": {"detect_on": "canvas", //原子之间互动检测 "canvas", "window""events": {"onhover": {"enable": true, //悬停"mode": "bubble" //悬停模式      "grab"抓取临近的,"bubble"泡沫球效果,"repulse"击退效果,["grab", "bubble"]},"onclick": {"enable": false,  //点击效果"mode": "repulse"  //点击效果模式   "push" ,"remove" ,"bubble" ,"repulse" ,["push", "repulse"]},"resize": true // 互动事件调整},"modes": {"grab": {"distance": 100, //原子互动抓取距离"line_linked": { "opacity": 0.8  //原子互动抓取距离连线不透明度}},"bubble": {"distance": 250, //原子抓取泡沫效果之间的距离"size": 4, // 原子抓取泡沫效果之间的大小"duration": 2, //原子抓取泡沫效果之间的持续事件"opacity": 1, //原子抓取泡沫效果透明度"speed": 3 },"repulse": {"distance": 400, //击退效果距离"duration": 0.4 //击退效果持续事件},"push": {"particles_nb": 4 //粒子推出的数量},"remove": {"particles_nb": 2}}},"retina_detect": true
}

更多推荐

particles.js插件 particles.json配置 两种样式参考

本文发布于:2024-03-12 21:06:56,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1732421.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:两种   样式   插件   particles   js

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!