-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathanimation.html
More file actions
112 lines (104 loc) · 2.94 KB
/
Copy pathanimation.html
File metadata and controls
112 lines (104 loc) · 2.94 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
<!DOCTYPE html>
<html>
<head>
<title></title>
<link rel="stylesheet" type="text/css" href="animation.css">
</head>
<body bgcolor="black">
<svg width="100%" height="100%" viewBox="30 -50 600 500" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1">
<path id="path">
<animate id="anim1"
attributeName="d"
from="m0,110 h0"
to="m0,110 h1100"
dur="1s"
begin="0s; anim4_2.end"
repeatCount="1"
fill="freeze"/>
<animate id="anim1_2"
attributeName="d"
from="m0,110 h1100"
to="m0,110 h0"
dur="1s"
begin="anim1.end"
repeatCount="1"
fill="freeze"/>
</path>
<text font-size="26" font-family="serif" fill='hsla(36, 95%, 85%, 1)'>
<textPath xlink:href="#path"> Hello!
</textPath>
</text>
<svg width="100%" height="100%" viewBox="30 -50 600 500" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1">
<path id="path2">
<animate id="anim2"
attributeName="d"
from="m0,110 h0"
to="m0,110 h1100"
dur="1.5s"
begin="anim1_2.end"
repeatCount="1"
fill="freeze" />
<animate id="anim2_2"
attributeName="d"
from="m0,110 h1100"
to="m0,110 h0"
dur="1.5s"
begin="anim2.end"
repeatCount="1"
fill="freeze" />
</path>
<text font-size="26" font-family="serif" fill='hsla(36, 95%, 85%, 1)'>
<textPath xlink:href="#path2"> We are Institute WebOps.
</textPath>
</text>
</svg>
<svg width="100%" height="100%" viewBox="30 -50 600 500" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1">
<path id="path3">
<animate id="anim3"
attributeName="d"
from="m0,110 h0"
to="m0,110 h1100"
dur="1.5s"
begin="anim2_2.end"
repeatCount="1"
fill="freeze" />
<animate id="anim3_2"
attributeName="d"
from="m0,110 h1100"
to="m0,110 h0"
dur="1.5s"
begin="anim3.end"
repeatCount="1"
fill="freeze" />
</path>
<text font-size="26" font-family="serif" fill='hsla(36, 95%, 85%, 1)'>
<textPath xlink:href="#path3"> We transform ideas into digital form.
</textPath>
</text>
</svg>
<svg width="100%" height="100%" viewBox="30 -50 600 500" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1">
<path id="path4">
<animate id="anim4"
attributeName="d"
from="m0,110 h0"
to="m0,110 h1100"
dur="1.5s"
begin="anim3_2.end"
repeatCount="1"
fill="freeze"/>
<animate id="anim4_2"
attributeName="d"
from="m0,110 h1100"
to="m0,110 h0"
dur="1.5s"
begin="anim4.end"
repeatCount="1"
fill="freeze"/>
</path>
<text font-size="26" font-family="serif" fill='hsla(36, 95%, 85%, 1)'>
<textPath xlink:href="#path4"> To provide ease to insti junta through the web.
</textPath>
</text>
</svg>
</body>
</html>