-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·46 lines (44 loc) · 1.71 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
42
43
44
45
46
<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="UTF-8">
<title>CodePen - mechanical starburst</title>
<link rel="stylesheet" href="./style.css">
</head>
<body>
<!-- partial:index.partial.html -->
<svg viewBox="0 0 100 100">
<g stroke-width="20" transform="translate(-20 0)">
<g transform="rotate(0 50 50)">
<circle cx="50" cy="50" r="0" stroke="#012" stroke-dasharray="0 9 6 4 5" fill="none">
<animate attributeName="r" values="0; 80; 0" dur="30s" begin="0s" repeatCount="indefinite" />
</circle>
</g>
<g transform="rotate(60 50 50)">
<circle cx="50" cy="50" r="0" stroke="#345" stroke-dasharray="4 8 4 6 2" fill="none">
<animate attributeName="r" values="0; 80; 0" dur="30s" begin="-2s" repeatCount="indefinite" />
</circle>
</g>
<g transform="rotate(120 50 50)">
<circle cx="50" cy="50" r="0" stroke="#678" stroke-dasharray="2 7 9 9 6" fill="none">
<animate attributeName="r" values="0; 80; 0" dur="30s" begin="-4s" repeatCount="indefinite" />
</circle>
</g>
<g transform="rotate(180 50 50)">
<circle cx="50" cy="50" r="0" stroke="#9ab" stroke-dasharray="8 8 3 7 7" fill="none">
<animate attributeName="r" values="0; 80; 0" dur="30s" begin="-6s" repeatCount="indefinite" />
</circle>
</g>
<g transform="rotate(240 50 50)">
<circle cx="50" cy="50" r="0" stroke="#cde" stroke-dasharray="1 5 6 7 5" fill="none">
<animate attributeName="r" values="0; 80; 0" dur="30s" begin="-8s" repeatCount="indefinite" />
</circle>
</g>
<rect class="text-bg" x="55" y="40" width="200" height="23" rx="1"/>
<text x="56" y="50" class="name">Todd Detwiler</text>
<text x="58" y="60" class="email">[email protected]</text>
</g>
</svg>
<!-- partial -->
</body>
</html>