-
Notifications
You must be signed in to change notification settings - Fork 4
/
chrome-like.html
55 lines (55 loc) · 1.19 KB
/
chrome-like.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
<!DOCTYPE html>
<html lang="en">
<body>
<svg xmlns="http://www.w3.org/2000/svg" width="240px" viewbox="0 0 24 24">
<style>
circle {
animation: A 3s linear infinite;
}
@keyframes A {
0% {
stroke-dasharray: 50 13;
stroke-dashoffset: 0;
}
13% {
stroke-dasharray: 4 59;
stroke-dashoffset: -55px;
}
25% {
stroke-dasharray: 4 59;
}
38% {
stroke-dasharray: 50 13;
}
50% {
stroke-dasharray: 50 13;
stroke-dashoffset: -94px;
}
63% {
stroke-dasharray: 4 59;
stroke-dashoffset: -147px;
}
75% {
stroke-dasharray: 4 59;
}
88% {
stroke-dasharray: 50 13;
}
to {
stroke-dasharray: 50 13;
stroke-dashoffset: -188px;
}
}
</style>
<circle
stroke-linecap="round"
cx="12"
cy="12"
r="10"
fill="#0000"
stroke-width="4"
stroke="#000"
/>
</svg>
</body>
</html>