JSDM

HTML

 
1
<div class="checkmark">
2
  <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
3
   viewBox="0 0 161.2 161.2" enable-background="new 0 0 161.2 161.2" xml:space="preserve">
4
<path class="path" fill="none" stroke="#7DB0D5" stroke-miterlimit="10" d="M425.9,52.1L425.9,52.1c-2.2-2.6-6-2.6-8.3-0.1l-42.7,46.2l-14.3-16.4
5
  c-2.3-2.7-6.2-2.7-8.6-0.1c-1.9,2.1-2,5.6-0.1,7.7l17.6,20.3c0.2,0.3,0.4,0.6,0.6,0.9c1.8,2,4.4,2.5,6.6,1.4c0.7-0.3,1.4-0.8,2-1.5
6
  c0.3-0.3,0.5-0.6,0.7-0.9l46.3-50.1C427.7,57.5,427.7,54.2,425.9,52.1z"/>
7
<circle class="path" fill="none" stroke="#7DB0D5" stroke-width="4" stroke-miterlimit="10" cx="80.6" cy="80.6" r="62.1"/>
8
<polyline class="path" fill="none" stroke="#7DB0D5" stroke-width="6" stroke-linecap="round" stroke-miterlimit="10" points="113,52.8 
9
  74.1,108.4 48.2,86.4 "/>
10
11
<circle class="spin" fill="none" stroke="#7DB0D5" stroke-width="4" stroke-miterlimit="10" stroke-dasharray="12.2175,12.2175" cx="80.6" cy="80.6" r="73.9"/>
12
13
</svg>
14
  
15
<p>Good!</p>
16
</div>
17
18

CSS

xxxxxxxxxx
82
 
1
.checkmark {
2
  width: 200px;
3
  margin: 0 auto;
4
  padding-top: 40px;
5
}
6
7
.path {
8
  stroke-dasharray: 1000;
9
  stroke-dashoffset: 0;
10
  animation: dash 2s ease-in-out;
11
  -webkit-animation: dash 2s ease-in-out;
12
}
13
14
.spin {
15
  animation: spin 2s;
16
  -webkit-animation: spin 2s;
17
  transform-origin: 50% 50%;
18
  -webkit-transform-origin: 50% 50%;
19
}
20
21
p {
22
  font-family: sans-serif;
23
  color: pink;
24
  font-size: 30px;
25
  font-weight: bold;
26
  margin: 20px auto;
27
  text-align: center;
28
  animation: text .5s linear .4s;
29
  -webkit-animation: text .4s linear .3s;
30
}
31
32
@-webkit-keyframes dash {
33
 0% {
34
   stroke-dashoffset: 1000;
35
 }
36
 100% {
37
   stroke-dashoffset: 0;
38
 }
39
}
40
41
@keyframes dash {
42
 0% {
43
   stroke-dashoffset: 1000;
44
 }
45
 100% {
46
   stroke-dashoffset: 0;
47
 }
48
}
49
50
@-webkit-keyframes spin {
51
  0% {
52
    -webkit-transform: rotate(0deg);
53
  }
54
  100% {
55
    -webkit-transform: rotate(360deg);
56
  }
57
}
58
59
@keyframes spin {
60
  0% {
61
    -webkit-transform: rotate(0deg);
62
  }
63
  100% {
64
    -webkit-transform: rotate(360deg);
65
  }
66
}
67
68
@-webkit-keyframes text {
69
  0% {
70
    opacity: 0; }
71
  100% {
72
    opacity: 1;
73
  }
74
75
  
76
  @keyframes text {
77
  0% {
78
    opacity: 0; }
79
  100% {
80
    opacity: 1;
81
  }
82
}
? ?
? ?
必须是有效的URL
+ 添加另一个资源

JS

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

文件管理 点击文件查看URL

图片

  1. 暂无文件

CSS

  1. 暂无文件

JavaScript

  1. 暂无文件

其他

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