Skip to content

Instantly share code, notes, and snippets.

@faizahmaddae
Created February 10, 2019 07:10
Show Gist options
  • Save faizahmaddae/254bf198be6989c1946cb28c22a871d6 to your computer and use it in GitHub Desktop.
Save faizahmaddae/254bf198be6989c1946cb28c22a871d6 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": ["#aa73ff", "#f8c210", "#83d238", "#33b1f8"]
},
"shape": {
"type": "circle",
"stroke": {
"width": 0,
"color": "#fff"
},
"polygon": {
"nb_sides": 5
},
"image": {
"src": "img/github.svg",
"width": 100,
"height": 100
}
},
"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