当前位置:   article > 正文

新年快乐,动态烟花及祝福代码,能通过微信发送

带特效2021新年快乐代码

新年快乐!

这是一个动态烟花代码的例子:

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <style>
  5. body {
  6. background-color: black;
  7. }
  8. .fireworks {
  9. position: absolute;
  10. top: 50%;
  11. left: 50%;
  12. transform: translate(-50%, -50%);
  13. }
  14. .fireworks__firework {
  15. position: absolute;
  16. top: -10%;
  17. left: 0%;
  18. width: 1px;
  19. height: 1px;
  20. background-color: white;
  21. border-radius: 50%;
  22. animation: firework 1s ease-in-out infinite;
  23. }
  24. @keyframes firework {
  25. 0% {
  26. top: -10%;
  27. left: 0%;
  28. width: 1px;
  29. height: 1px;
  30. opacity: 1;
  31. }
  32. 25% {
  33. width: 6px;
  34. height: 6px;
  35. opacity: 1;
  36. }
  37. 50% {
  38. width: 12px;
  39. height: 12px;
  40. opacity: 0.5;
  41. }
  42. 75% {
  43. width: 24px;
  44. height: 24px;
  45. opacity: 0;
  46. }
  47. 100% {
  48. top: 110%;
  49. left: 50%;
  50. width: 6px;
  51. height: 6px;
  52. opacity: 0;
  53. }
  54. }
  55. .fireworks__firework--red {
  56. --bg-color: #f44336;
  57. animation-delay: 0s;
  58. }
  59. .fireworks__firework--yellow {
  60. --bg-color: #ffff00;
  61. animation-delay: 0.2s;
  62. }
  63. .fireworks__firework--blue {
  64. --bg-color: #2196f3;
  65. animation-delay: 0.4s;
  66. }
  67. .fireworks__firework--green {
  68. --bg-color: #4caf50;
  69. animation-delay: 0.6s;
  70. }
  71. </style>
  72. </head>
  73. <body>
  74. <div class="fireworks">
  75. <div class="fireworks__firework fireworks__firework--red"></div>
  76. <div class="fireworks__firework fireworks__firework--yellow"></div>
  77. <div class="fireworks__firework fireworks__firework--blue"></div>
  78. <div class="fireworks__firework fireworks__firework--green"></div>
  79. </div>
  80. </body>
  81. </html>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73
  • 74
  • 75
  • 76
  • 77
  • 78
  • 79
  • 80
  • 81
  • 82
  • 83
  • 84
  • 85
  • 86
  • 87
  • 88
  • 89
  • 90
  • 91
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/不正经/article/detail/85266?site
推荐阅读
相关标签
  

闽ICP备14008679号