Advertisement
Guest User

falling butterfly image

a guest
Feb 16th, 2025
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.26 KB | None | 0 0
  1. <style>
  2. /* customizable snowflake styling */
  3. .snowflake {
  4. color: #fff;
  5. font-size: .5em;
  6. font-family: Arial, sans-serif;
  7. text-shadow: 0 0 5px #000;
  8. }
  9.  
  10. @-webkit-keyframes snowflakes-fall {
  11. 0% {
  12. top: -10%
  13. }
  14.  
  15. 100% {
  16. top: 100%
  17. }
  18. }
  19.  
  20. @-webkit-keyframes snowflakes-shake {
  21.  
  22. 0%,
  23. 100% {
  24. -webkit-transform: translateX(0);
  25. transform: translateX(0)
  26. }
  27.  
  28. 50% {
  29. -webkit-transform: translateX(80px);
  30. transform: translateX(80px)
  31. }
  32. }
  33.  
  34. @keyframes snowflakes-fall {
  35. 0% {
  36. top: -10%
  37. }
  38.  
  39. 100% {
  40. top: 100%
  41. }
  42. }
  43.  
  44. @keyframes snowflakes-shake {
  45.  
  46. 0%,
  47. 100% {
  48. transform: translateX(0)
  49. }
  50.  
  51. 50% {
  52. transform: translateX(80px)
  53. }
  54. }
  55.  
  56. .snowflake {
  57. position: fixed;
  58. top: -10%;
  59. z-index: -1000;
  60. -webkit-user-select: none;
  61. -moz-user-select: none;
  62. -ms-user-select: none;
  63. user-select: none;
  64. cursor: default;
  65. -webkit-animation-name: snowflakes-fall, snowflakes-shake;
  66. -webkit-animation-duration: 10s, 3s;
  67. -webkit-animation-timing-function: linear, ease-in-out;
  68. -webkit-animation-iteration-count: infinite, infinite;
  69. -webkit-animation-play-state: running, running;
  70. animation-name: snowflakes-fall, snowflakes-shake;
  71. animation-duration: 10s, 3s;
  72. animation-timing-function: linear, ease-in-out;
  73. animation-iteration-count: infinite, infinite;
  74. animation-play-state: running, running
  75. }
  76.  
  77. .snowflake:nth-of-type(0) {
  78. left: 1%;
  79. -webkit-animation-delay: 0s, 0s;
  80. animation-delay: 0s, 0s
  81. }
  82.  
  83. .snowflake:nth-of-type(1) {
  84. left: 10%;
  85. -webkit-animation-delay: 1s, 1s;
  86. animation-delay: 1s, 1s
  87. }
  88.  
  89. .snowflake:nth-of-type(2) {
  90. left: 20%;
  91. -webkit-animation-delay: 6s, .5s;
  92. animation-delay: 6s, .5s
  93. }
  94.  
  95. .snowflake:nth-of-type(3) {
  96. left: 30%;
  97. -webkit-animation-delay: 4s, 2s;
  98. animation-delay: 4s, 2s
  99. }
  100.  
  101. .snowflake:nth-of-type(4) {
  102. left: 40%;
  103. -webkit-animation-delay: 2s, 2s;
  104. animation-delay: 2s, 2s
  105. }
  106.  
  107. .snowflake:nth-of-type(5) {
  108. left: 50%;
  109. -webkit-animation-delay: 8s, 3s;
  110. animation-delay: 8s, 3s
  111. }
  112.  
  113. .snowflake:nth-of-type(6) {
  114. left: 60%;
  115. -webkit-animation-delay: 6s, 2s;
  116. animation-delay: 6s, 2s
  117. }
  118.  
  119. .snowflake:nth-of-type(7) {
  120. left: 70%;
  121. -webkit-animation-delay: 2.5s, 1s;
  122. animation-delay: 2.5s, 1s
  123. }
  124.  
  125. .snowflake:nth-of-type(8) {
  126. left: 80%;
  127. -webkit-animation-delay: 1s, 0s;
  128. animation-delay: 1s, 0s
  129. }
  130.  
  131. .snowflake:nth-of-type(9) {
  132. left: 90%;
  133. -webkit-animation-delay: 3s, 1.5s;
  134. animation-delay: 3s, 1.5s
  135. }
  136.  
  137. .snowflake:nth-of-type(10) {
  138. left: 25%;
  139. -webkit-animation-delay: 2s, 0s;
  140. animation-delay: 2s, 0s
  141. }
  142.  
  143. .snowflake:nth-of-type(11) {
  144. left: 65%;
  145. -webkit-animation-delay: 4s, 2.5s;
  146. animation-delay: 4s, 2.5s
  147. }
  148. </style>
  149. <div class="snowflakes" aria-hidden="true">
  150. <div class="snowflake">
  151. <img src="https://media.everskies.com/LgH5vxydH9Gk4DCrcwIy.png">
  152. </div>
  153. <div class="snowflake">
  154. <img src="https://media.everskies.com/LgH5vxydH9Gk4DCrcwIy.png">
  155. </div>
  156. <div class="snowflake">
  157. <img src="https://media.everskies.com/LgH5vxydH9Gk4DCrcwIy.png">
  158. </div>
  159. <div class="snowflake">
  160. <img src="https://media.everskies.com/LgH5vxydH9Gk4DCrcwIy.png">
  161. </div>
  162. <div class="snowflake">
  163. <img src="https://media.everskies.com/LgH5vxydH9Gk4DCrcwIy.png">
  164. </div>
  165. <div class="snowflake">
  166. <img src="https://media.everskies.com/LgH5vxydH9Gk4DCrcwIy.png">
  167. </div>
  168. <div class="snowflake">
  169. <img src="https://media.everskies.com/LgH5vxydH9Gk4DCrcwIy.png">
  170. </div>
  171. <div class="snowflake">
  172. <img src="https://media.everskies.com/LgH5vxydH9Gk4DCrcwIy.png">
  173. </div>
  174. <div class="snowflake">
  175. <img src="https://media.everskies.com/LgH5vxydH9Gk4DCrcwIy.png">
  176. </div>
  177. <div class="snowflake">
  178. <img src="https://media.everskies.com/LgH5vxydH9Gk4DCrcwIy.png">
  179. </div>
  180. <div class="snowflake">
  181. <img src="https://media.everskies.com/LgH5vxydH9Gk4DCrcwIy.png">
  182. </div>
  183. <div class="snowflake">
  184. <img src="https://media.everskies.com/LgH5vxydH9Gk4DCrcwIy.png">
  185. </div>
  186. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement