A Pen by Justin Anthony Balaguer I on CodePen.
Created
August 6, 2018 13:21
-
-
Save justinbalaguer/58bb5637bf62bbc95ed7e175b338f0eb to your computer and use it in GitHub Desktop.
Particles Background
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div id="particles-js"> | |
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* ---- particles.js config ---- */ | |
particlesJS("particles-js", { | |
"particles": { | |
"number": { | |
"value": 100, | |
"density": { | |
"enable": true, | |
"value_area":1000 | |
} | |
}, | |
"color": { | |
"value": ["#ffffff"] | |
}, | |
"shape": { | |
"type": "circle", | |
"stroke": { | |
"width": 0, | |
"color": "#fff" | |
}, | |
"polygon": { | |
"nb_sides": 5 | |
}, | |
}, | |
"opacity": { | |
"value": 0.6, | |
"random": false, | |
"anim": { | |
"enable": false, | |
"speed": 1, | |
"opacity_min": 0.1, | |
"sync": false | |
} | |
}, | |
"size": { | |
"value": 2, | |
"random": true, | |
"anim": { | |
"enable": false, | |
"speed": 40, | |
"size_min": 0.1, | |
"sync": false | |
} | |
}, | |
"line_linked": { | |
"enable": true, | |
"distance": 120, | |
"color": "#ffffff", | |
"opacity": 0.4, | |
"width": 1 | |
}, | |
}, | |
"interactivity": { | |
"detect_on": "canvas", | |
"events": { | |
"onhover": { | |
"enable": true, | |
"mode": "grab" | |
}, | |
"onclick": { | |
"enable": false | |
}, | |
"resize": true | |
}, | |
"modes": { | |
"grab": { | |
"distance": 140, | |
"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 | |
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script src="https://cdn.jsdelivr.net/particles.js/2.0.0/particles.min.js"></script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
html, body{ | |
height: 100%; | |
margin:0px; | |
padding: 0px; | |
} | |
#particles-js{ | |
width: 100%; | |
height: 100%; | |
background: #111111; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment