這次帶給大家Particles.js實作粒子動態背景動畫,Particles.js實作粒子動態背景動畫的注意事項有哪些,下面就是實戰案例,一起來看一下。
操作過程:
網路上有基本流程,可以參考一下,但直接用在登入頁面 會有小bug,需要調整下。
1.首先在頁面中引入particles.js檔。
<script src="js/particles.js"></script>
2.在頁面中使用一個p來作為放置粒子的容器。 [一般放最底部,css 需要改進]
<p id="particles"></p> <style type="text/css"> #particles { position: absolute; top: 0; width: 100%; z-index: -1; //这个z-index 要是不设置 会对登录表单的点击产生干扰,会去抢风头,不好好做一个安静的背景。 background-color: #26AFE3; } </style>
3.載入設定檔: 網路上講 用load()方法 還要弄個設定好的json文件,光路徑 就搞殘了我。
參考官方demo http://codepen.io/VincentGarreau/pen/pnlso
# 以js裡面直接寫入配置
<script type="text/javascript"> // particlesJS.load('particles', './js/app/particles.json', function() { // console.log('callback - particles.js config loaded'); // }); particlesJS("particles", { "particles": { "number": { "value": 30, "density": { "enable": true, "value_area": 800 } }, "color": { "value": "#ffffff" }, "shape": { "type": "circle", "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": 10, "random": true, "anim": { "enable": false, "speed": 50, "size_min": 0.1, "sync": false } }, "line_linked": { "enable": true, "distance": 300, "color": "#ffffff", "opacity": 0.4, "width": 2 }, "move": { "enable": true, "speed": 8, "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": false, "mode": "repulse" }, "onclick": { "enable": false, "mode": "push" }, "resize": true }, "modes": { "grab": { "distance": 800, "line_linked": { "opacity": 1 } }, "bubble": { "distance": 800, "size": 80, "duration": 2, "opacity": 0.8, "speed": 3 }, "repulse": { "distance": 400, "duration": 0.4 }, "push": { "particles_nb": 4 }, "remove": { "particles_nb": 2 } } }, "retina_detect": true }); </script>
4,設定參數 option 以及使用: option github 官網頁面有詳情。控製粒子數量 運動速度 什麼的
# particles 用起來還是有點問題的,在chrome 下載檔案後再切換到這個頁面 就殘廢了。等解決方法。
相信看了本文案例你已經掌握了方法,更多精彩請關注php中文網其它相關文章!
推薦閱讀:
以上是Particles.js實作粒子動態背景動畫的詳細內容。更多資訊請關注PHP中文網其他相關文章!