-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
41 lines (39 loc) · 1.69 KB
/
index.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
<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="UTF-8">
<title>Bicycle Loader</title>
<link rel="stylesheet" href="./style.css">
</head>
<body>
<svg class="bike" viewBox="0 0 48 30" width="48px" height="30px">
<g fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="1">
<g transform="translate(9.5,19)">
<circle class="bike__tire" r="9" stroke-dasharray="56.549 56.549" />
<g class="bike__spokes-spin" stroke-dasharray="31.416 31.416" stroke-dashoffset="-23.562">
<circle class="bike__spokes" r="5" />
<circle class="bike__spokes" r="5" transform="rotate(180,0,0)" />
</g>
</g>
<g transform="translate(24,19)">
<g class="bike__pedals-spin" stroke-dasharray="25.133 25.133" stroke-dashoffset="-21.991" transform="rotate(67.5,0,0)">
<circle class="bike__pedals" r="4" />
<circle class="bike__pedals" r="4" transform="rotate(180,0,0)" />
</g>
</g>
<g transform="translate(38.5,19)">
<circle class="bike__tire" r="9" stroke-dasharray="56.549 56.549" />
<g class="bike__spokes-spin" stroke-dasharray="31.416 31.416" stroke-dashoffset="-23.562">
<circle class="bike__spokes" r="5" />
<circle class="bike__spokes" r="5" transform="rotate(180,0,0)" />
</g>
</g>
<polyline class="bike__seat" points="14 3,18 3" stroke-dasharray="5 5" />
<polyline class="bike__body" points="16 3,24 19,9.5 19,18 8,34 7,24 19" stroke-dasharray="79 79" />
<path class="bike__handlebars" d="m30,2h6s1,0,1,1-1,1-1,1" stroke-dasharray="10 10" />
<polyline class="bike__front" points="32.5 2,38.5 19" stroke-dasharray="19 19" />
</g>
</svg>
<script src="./script.js"></script>
</body>
</html>