-
Notifications
You must be signed in to change notification settings - Fork 4
/
ios-like2.html
31 lines (31 loc) · 1 KB
/
ios-like2.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
<!DOCTYPE html>
<html>
<body>
<svg width="42px" xmlns="http://www.w3.org/2000/svg" viewbox="0 0 22 22">
<style>
svg {
animation: A 1.2s steps(12) infinite;
}
@keyframes A {
to {
transform: rotate(1turn);
}
}
</style>
<g stroke-width="2" stroke-linecap="round">
<path stroke="#fff" d="M11 1v3" />
<path stroke="#000" d="M16 2.34l-1.5 2.6" />
<path stroke="#171717" d="M19.66 6l-2.6 1.5" />
<path stroke="#2e2e2e" d="M18 11h3" />
<path stroke="#454545" d="M17.06 14.5l2.6 1.5" />
<path stroke="#5c5c5c" d="M14.5 17.06l1.5 2.6" />
<path stroke="#737373" d="M11 18v3" />
<path stroke="#8d8d8d" d="M7.5 17.06L6 19.66" />
<path stroke="#a2a2a2" d="M4.94 14.5L2.34 16" />
<path stroke="#b9b9b9" d="M1 11h3" />
<path stroke="#d0d0d0" d="M2.34 6l2.6 1.5" />
<path stroke="#e7e7e7" d="M6 2.34l1.5 2.6" />
</g>
</svg>
</body>
</html>