-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSharingan SVG.html
67 lines (59 loc) · 2.29 KB
/
Sharingan SVG.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
56
57
58
59
60
61
62
63
64
65
66
67
<!DOCTYPE html>
<html>
<head>
<title>Sharingan Animation</title>
</head>
<body>
<!-- created by Adiel Isai Lara Chi -->
<svg width="2000" height="2000">
<ellipse cx="150" cy="100" rx="150" ry="70"
style="fill:white;" stroke="black"/>
<circle cx="150" cy="100" r="70" style="fill:#191919;">
<animate attributeName="fill" from="#191919" to="red"
dur="5s" fill="freeze" repeatCount="indefinite"/>
</circle>
<circle cx="180" cy="130" r="10" style="fill:#191919;">
<animate attributeName="fill" from="#191919" to="black"
dur="5s" fill="freeze" repeatCount="indefinite"/>
</circle>
<circle cx="120" cy="130" r="10" style="fill:#191919;">
<animate attributeName="fill" from="#191919" to="black"
dur="5s" fill="freeze" repeatCount="indefinite"/>
</circle>
<circle cx="150" cy="60" r="10" style="fill:#191919;">
<animate attributeName="fill" from="#191919" to="black"
dur="5s" fill="freeze" repeatCount="indefinite"/>
</circle>
<circle cx="150" cy="100" r="20" style="fill:black;"/>
<circle cx="150" cy="100" r="40" style="fill:none;" stroke="black">
<animate attributeName="stroke" from="#191919" to="black"
dur="5s" fill="freeze" repeatCount="indefinite"/>
</circle>
<ellipse cx="550" cy="100" rx="150" ry="70"
style="fill:white;" stroke="black"/>
<circle cx="550" cy="100" r="70" style="fill:#191919;">
<animate attributeName="fill" from="#191919" to="red"
dur="5s" fill="freeze" repeatCount="indefinite"/>
</circle>
<circle cx="580" cy="130" r="10" style="fill:#191919;">
<animate attributeName="fill" from="#191919" to="black"
dur="5s" fill="freeze" repeatCount="indefinite"/>
</circle>
<circle cx="520" cy="130" r="10" style="fill:#191919;">
<animate attributeName="fill" from="#191919" to="black"
dur="5s" fill="freeze" repeatCount="indefinite"/>
</circle>
<circle cx="550" cy="60" r="10" style="fill:#191919;">
<animate attributeName="fill" from="#191919" to="black"
dur="5s" fill="freeze" repeatCount="indefinite"/>
</circle>
<circle cx="550" cy="100" r="20" style="fill:black;"/>
<circle cx="550" cy="100" r="40" style="fill:none;" stroke="black">
<animate attributeName="stroke" from="#191919" to="black"
dur="5s" fill="freeze" repeatCount="indefinite"/>
</circle>
</svg>
<!-- created by Adiel Isai Lara Chi -->
</body>
</html>
<!-- This is a test comment -->