Skip to content

Instantly share code, notes, and snippets.

@justinbalaguer
Created August 6, 2018 13:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save justinbalaguer/58bb5637bf62bbc95ed7e175b338f0eb to your computer and use it in GitHub Desktop.
Save justinbalaguer/58bb5637bf62bbc95ed7e175b338f0eb to your computer and use it in GitHub Desktop.
Particles Background
<div id="particles-js">
</div>
/* ---- 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
});
<script src="https://cdn.jsdelivr.net/particles.js/2.0.0/particles.min.js"></script>
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