Advertisement
DOLLIECARRDS

snowflakes code W/OUT the colors

Sep 12th, 2022 (edited)
407
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. <style>
  2. #floating {
  3. animation-name: floating;
  4. animation-duration: 2.50s;
  5. animation-iteration-count: infinite;
  6. animation-timing-function: ease-in-out;
  7. }
  8.  
  9. @keyframes floating {
  10. 0% {
  11. transform: translate(0, 0px);
  12. }
  13.  
  14. 50% {
  15. transform: translate(0, 17px);
  16. }
  17.  
  18. 100% {
  19. transform: translate(0, -0px);
  20. }
  21. }
  22.  
  23. </style>
  24. </div>
  25. <div id="floating">
  26. <script src="https://unpkg.com/magic-snowflakes/dist/snowflakes.min.js"></script>
  27. <script>
  28. var sf = new Snowflakes({
  29. color: "#ffffff",
  30. count: 20,
  31. minOpacity: 0.1,
  32. maxOpacity: 0.6,
  33. maxSize: 30
  34. });
  35.  
  36. </script>
  37. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement