JSDM

HTML

 
1
<div class="wave">
2
  <i class="wave1"></i>
3
  <i class="wave2"></i>
4
  <i class="wave3"></i>
5
</div>

CSS

x
 
1
@keyframes water-wave {
2
  0% {
3
    transform: rotate(0deg);
4
  }
5
6
  100% {
7
    transform: rotate(360deg);
8
  }
9
}
10
11
.wave {
12
  position: relative;
13
  width: 240px;
14
  height: 240px;
15
  margin: 0 auto;
16
  border-radius: 50%;
17
  line-height: 50px;
18
  font-size: 14px;
19
  text-align: center;
20
  overflow: hidden;
21
  animation: water-wave linear infinite;
22
  box-shadow: 0 0 35px rgb(16 119 188 / 60%) inset;
23
}
24
  .wave1 {
25
    position: absolute;
26
    top: 60%;
27
    left: -65%;
28
    background: #0480C0;
29
    opacity: .6;
30
    width: 260%;
31
    height: 260%;
32
    border-radius: 40%;
33
    animation: inherit;
34
    animation-duration: 10s;
35
  }
36
37
  .wave2 {
38
    position: absolute;
39
    top: 60%;
40
    left: -60%;
41
    background: #0480C0;
42
    opacity: .4;
43
    width: 260%;
44
    height: 260%;
45
    border-radius: 35%;
46
    animation: inherit;
47
    animation-duration: 15s;
48
  }
49
50
  .wave3 {
51
    position: absolute;
52
    top: 60%;
53
    left: -55%;
54
    background: #0480C0;
55
    opacity: .2;
56
    width: 260%;
57
    height: 260%;
58
    border-radius: 40%;
59
    animation: inherit;
60
    animation-duration: 20s;
61
  }
? ?
? ?
必须是有效的URL
+ 添加另一个资源

JS

xxxxxxxxxx
1
 
1
必须是有效的URL
+ 添加另一个资源
Close

文件管理 点击文件查看URL

图片

  1. 暂无文件

CSS

  1. 暂无文件

JavaScript

  1. 暂无文件

其他

  1. 暂无文件
拖动文件到上面的区域或者:
加载中 ..................