javascript 如何使用particle.js?
声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow
原文地址: http://stackoverflow.com/questions/32369629/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me):
StackOverFlow
how to use particles.js?
提问by Jay
I can't seem to get particles.js working--what exactly am I doing wrong? Any insights would be appreciated, I can't determine if the error is due to an external dependency or not...
我似乎无法让particles.js 工作——我到底做错了什么?任何见解将不胜感激,我无法确定错误是否是由于外部依赖造成的...
HTML:
HTML:
<div id = "particles-js"></div>
<!-- particles -->
<script src = "particles.js-master/particles.min.js"></script>
CSS:
CSS:
/* ---- particles.js container ---- */
#particles-js{
width: 100%;
background-color: #3284BF;
background-image: url('');
background-position: 50% 50%;
background-repeat: no-repeat;
}
Javascript:
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
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
}
回答by Jay
Problem solved--I needed to make a separate javascript file called app.js and put the JSON in that as a JS function (see how they did their demo and fiddle around with it till you can make it do what you want)
问题解决了——我需要制作一个名为 app.js 的单独 javascript 文件,并将 JSON 作为 JS 函数放入其中(看看他们是如何做他们的演示并摆弄它直到你可以让它做你想做的)