Animated BG
by Eugene Trounev
HTML
<script src="https://cdn.jsdelivr.net/particles.js/2.0.0/particles.min.js"></script>
<!-- https://github.com/VincentGarreau/particles.js/ -->
<div id="particles-js"></div>
SCSS
body {
margin: 0;
font: normal 75% Arial, Helvetica, sans-serif;
}
canvas {
display: block;
vertical-align: bottom;
}
/* ---- particles.js container ---- */
#particles-js {
position: absolute;
width: 100%;
height: 100%;
background-color: #fff;
background-image: url(https://chat.ttrprivatenextcloudserverdomain.cloud/files/9d7asm3cfpgr8q9a47c7q9qmpr/public?h=BAWY0gzHnArlP1rwaibv_e1i3A17nVCjxIpuKuBS6PM);
background-repeat: no-repeat;
background-position: right bottom;
background-size: 600px;
}
JavaScript
particlesJS("particles-js", {
"particles": {
"number": {
"value": 80,
"density": {
"enable": true,
"value_area": 800
}
},
"color": {
"value": "#d2d1ff"
},
"shape": {
"type": ["star","circle"]
},
"opacity": {
"value": 1,
"random": true,
"anim": {
"enable": false,
"speed": 1,
"opacity_min": 0.1,
"sync": false
}
},
"size": {
"value": 4,
"random": true,
"anim": {
"enable": false,
"speed": 40,
"size_min": 0.1,
"sync": false
}
},
"line_linked": {
"enable": false
},
"move": {
"enable": true,
"speed": 1,
"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": false,
"mode": "push"
},
"resize": true
}
},
"retina_detect": true
});