Advertisement
lukerogue

Untitled

Jan 24th, 2018
191
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.88 KB | None | 0 0
  1. <style>
  2. body,
  3. html {
  4. height: 100%
  5. }
  6.  
  7. #particles-js canvas {
  8. display: block;
  9. vertical-align: bottom;
  10. -webkit-transform: scale(1);
  11. -ms-transform: scale(1);
  12. transform: scale(1);
  13. opacity: 0.5;
  14. -webkit-transition: opacity .8s ease, -webkit-transform 1.4s ease;
  15. transition: opacity .8s ease, transform 1.4s ease
  16. }
  17.  
  18. #particles-js {
  19. width: 100%;
  20. height: 100%;
  21. position: fixed;
  22. z-index: -10;
  23. top: 0;
  24. left: 0
  25. }
  26. </style>
  27. <div id="particles-js"></div>
  28. <script src="https://s3.amazonaws.com/files.enjin.com/1504354/bootstrap3/particles.js"></script>
  29.  
  30. <script>
  31. /* particlesJS.load(@dom-id, @path-json, @callback (optional)); */
  32. particlesJS.load('particles-js', 'https://s3.amazonaws.com/files.enjin.com/1504354/bootstrap3/particlesjs.json', function() {
  33. console.log('callback - particles.js config loaded');
  34. });
  35. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement