-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathloding.html
More file actions
49 lines (46 loc) · 1.92 KB
/
Copy pathloding.html
File metadata and controls
49 lines (46 loc) · 1.92 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="loding.css">
<link rel="icon" href="/img/profile-picture.png">
<title>loding</title>
</head>
<body>
<div>
<svg height="108px" width="108px" viewBox="0 0 128 128" class="loader">
<defs>
<clipPath id="loader-eyes">
<circle transform="rotate(-40,64,64) translate(0,-56)" r="8" cy="64" cx="64" class="loader__eye1"></circle>
<circle transform="rotate(40,64,64) translate(0,-56)" r="8" cy="64" cx="64" class="loader__eye2"></circle>
</clipPath>
<linearGradient y2="1" x2="0" y1="0" x1="0" id="loader-grad">
<stop stop-color="#000" offset="0%"></stop>
<stop stop-color="#fff" offset="100%"></stop>
</linearGradient>
<mask id="loader-mask">
<rect fill="url(#loader-grad)" height="128" width="128" y="0" x="0"></rect>
</mask>
</defs>
<g stroke-dasharray="175.93 351.86" stroke-width="12" stroke-linecap="round">
<g>
<rect clip-path="url(#loader-eyes)" height="64" width="128" fill="hsl(193,90%,50%)"></rect>
<g stroke="hsl(193,90%,50%)" fill="none">
<circle transform="rotate(180,64,64)" r="56" cy="64" cx="64" class="loader__mouth1"></circle>
<circle transform="rotate(0,64,64)" r="56" cy="64" cx="64" class="loader__mouth2"></circle>
</g>
</g>
<g mask="url(#loader-mask)">
<rect clip-path="url(#loader-eyes)" height="64" width="128" fill="hsl(223,90%,50%)"></rect>
<g stroke="hsl(223,90%,50%)" fill="none">
<circle transform="rotate(180,64,64)" r="56" cy="64" cx="64" class="loader__mouth1"></circle>
<circle transform="rotate(0,64,64)" r="56" cy="64" cx="64" class="loader__mouth2"></circle>
</g>
</g>
</g>
</svg>
</div>
<script src="/loding.js"></script>
</body>
</html>