index.html 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <meta http-equiv="X-UA-Compatible" content="ie=edge">
  7. <title>Document</title>
  8. <style>
  9. body,
  10. div,
  11. h1,
  12. h2,
  13. h3,
  14. html,
  15. li,
  16. p,
  17. ul {
  18. margin: 0;
  19. padding: 0;
  20. box-sizing: border-box;
  21. }
  22. @-webkit-keyframes move_wave {
  23. 0% {
  24. background-position: 0 0
  25. }
  26. to {
  27. background-position: 532px 0
  28. }
  29. }
  30. @keyframes move_wave {
  31. 0% {
  32. background-position: 0 0
  33. }
  34. to {
  35. background-position: 532px 0
  36. }
  37. }
  38. .boll {
  39. height: 174px;
  40. width: 174px;
  41. border-radius: 50%;
  42. border: 2px solid #fe810c;
  43. float: left;
  44. position: relative;
  45. font-size: 14px;
  46. overflow: hidden;
  47. }
  48. .text {
  49. text-align: center;
  50. margin-top: 40px;
  51. color: #fe810c;
  52. }
  53. .num {
  54. font-size: 30px;
  55. }
  56. .water {
  57. height: 50%;
  58. background: url(water.png) repeat-x;
  59. position: absolute;
  60. width: 100%;
  61. -webkit-animation: move_wave 4s linear infinite;
  62. animation: move_wave 4s linear infinite;
  63. }
  64. .w1 {
  65. opacity: .5;
  66. background-position: 120px 0;
  67. -webkit-animation: move_wave 10s linear infinite;
  68. animation: move_wave 10s linear infinite;
  69. }
  70. .w2 {
  71. opacity: .3;
  72. background-position: 60px 0;
  73. -webkit-animation: move_wave 8s linear infinite;
  74. animation: move_wave 8s linear infinite;
  75. }
  76. </style>
  77. </head>
  78. <body>
  79. <div class="boll">
  80. <div class="text">
  81. <p class="num">6542.3214</p>
  82. <p>BTC</p>
  83. </div>
  84. <div class="water w1"></div>
  85. <div class="water w2"></div>
  86. <div class="water"></div>
  87. </div>
  88. </body>
  89. </html>