ParticlesJS는 파티클 배경을 만들기 위한 경량 JavaScript 라이브러리입니다. 다음으로 JS 라이브러리 ParticlesJS 사용법에 대해 소개하겠습니다. 관심 있는 친구들은 함께 살펴보세요
particles.js
ParticleS 생성을 위한 경량 JavaScript 라이브러리 轻 입자 배경 생성을 위한 경량 JavaScript 라이브러리
먼저 렌더링을 살펴보겠습니다.
표준 버전:
Starry Sky Edition:
버블 버전:
Snow 버전: 이걸로 무엇을 할 수 있나요? 배경이 없는 페이지에 더 적합한 것 같아요. 또는 배경으로 사용할 적절한 사진을 찾을 수 없다면 모두 이것을 사용할 수 있습니다. 예: 또는 효과는 꽤 좋습니다. 파티클.js를 사용하는 방법은 다음과 같습니다. particlesJS는 Github의 오픈 소스입니다: https://github.com/VincentGarreau/particles.js이 프로젝트는 데모를 제공하며 이 프로젝트를 직접 다운로드하고 데모에서 index.html 파일을 열어 효과를 확인할 수 있습니다. . 그렇다면, 우리만의 프로젝트를 만들고 싶다면 파일을 어떻게 가져오나요? 제안 사항은 다음과 같습니다.
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>particles.js</title> <meta name="description" content="particles.js is a lightweight JavaScript library for creating particles."> <meta name="author" content="Vincent Garreau" /> <meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no"> <link rel="stylesheet" media="screen" href="css/style.css" rel="external nofollow" > </head> <body> <p id="particles-js"></p> <!-- scripts --> <script src="js/particles.js"></script> <script src="js/app.js"></script> </body> </html>particles.js는 라이브러리이므로 가져와야 하며 app.js는 매개변수 구성 파일이므로 가져와야 하며 통계를 가져올 필요가 없습니다. 데모에는 Node.js가 있습니다. style.css 소개할 수도 있는데, 배경색은 CSS에서 설정됩니다.
이 템플릿을 기반으로 등록, 로그인 기능 등 우리가 구현하고 싶은 기능을 추가할 수 있습니다. 주목해야 할 점은:
{ "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 }프로필 2(별이 빛나는 하늘 배경): 🎜
{ "particles": { "number": { "value": 160, "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": 1, "random": true, "anim": { "enable": true, "speed": 1, "opacity_min": 0, "sync": false } }, "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", "random": true, "straight": false, "out_mode": "out", "bounce": false, "attract": { "enable": false, "rotateX": 600, "rotateY": 600 } } }, "interactivity": { "detect_on": "canvas", "events": { "onhover": { "enable": true, "mode": "bubble" }, "onclick": { "enable": true, "mode": "repulse" }, "resize": true }, "modes": { "grab": { "distance": 400, "line_linked": { "opacity": 1 } }, "bubble": { "distance": 250, "size": 0, "duration": 2, "opacity": 0, "speed": 3 }, "repulse": { "distance": 400, "duration": 0.4 }, "push": { "particles_nb": 4 }, "remove": { "particles_nb": 2 } } }, "retina_detect": true }
위 내용은 JS 라이브러리와 함께 ParticlesJS를 사용하는 방법에 대한 간략한 소개의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!