如何使用particles.js

how to use particles.js?

本文关键字:js particles 何使用      更新时间:2023-09-26

我似乎不能得到粒子。js工作-我到底做错了什么?任何见解将不胜感激,我无法确定错误是否是由于外部依赖或不…

HTML:

<div id = "particles-js"></div>
<!-- particles -->
<script src = "particles.js-master/particles.min.js"></script>
CSS:

/* ---- particles.js container ---- */
#particles-js{
  width: 100%;
  background-color: #3284BF;
  background-image: url('');
  background-position: 50% 50%;
  background-repeat: no-repeat;
}
Javascript:

/* particlesJS.load(@dom-id, @path-json, @callback (optional)); */
particlesJS.load('particles-js', 'particles.js-master/particles.json', function() {
  console.log('callback - particles.js config loaded');
});
JSON

{
  "particles": {
    "number": {
      "value": 100,
      "density": {
        "enable": true,
        "value_area": 1500
      }
    },
    "color": {
      "value": "#ffb300"
    },
    "shape": {
      "type": "circle",
      "stroke": {
        "width": 0,
        "color": "#000000"
      },
      "polygon": {
        "nb_sides": 5
      },
      "image": {
        "src": "img/github.svg",
        "width": 100,
        "height": 100
      }
    },
    "opacity": {
      "value": 1,
      "random": false,
      "anim": {
        "enable": false,
        "speed": 1,
        "opacity_min": 0.1,
        "sync": false
      }
    },
    "size": {
      "value": 3.945738208161363,
      "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": 3,
      "direction": "none",
      "random": false,
      "straight": false,
      "out_mode": "out",
      "bounce": false,
      "attract": {
        "enable": false,
        "rotateX": 1200,
        "rotateY": 1200
      }
    }
  },
  "interactivity": {
    "detect_on": "canvas",
    "events": {
      "onhover": {
        "enable": true,
        "mode": "grab"
      },
      "onclick": {
        "enable": true,
        "mode": "push"
      },
      "resize": true
    },
    "modes": {
      "grab": {
        "distance": 200,
        "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": true
}

问题解决了——我需要制作一个名为app.js的单独javascript文件,并将JSON作为JS函数放入其中(看看他们是如何做演示并摆弄它直到你可以让它做你想做的事情)