-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
139 lines (120 loc) · 3.06 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
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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
<!DOCTYPE html>
<html>
<head>
<title>CSS animation, transition and transforms</title>
<meta name="description" content="CSS Advanced Animations">
<meta name="keywords" content="css Advanced animation">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- style -->
<link rel="stylesheet" href="./styles.css" type="text/css" media="all">
</head>
<body>
<div class="buttons-wrap">
<h2 class="btn-cont">
<p>Rotating button effect!</p>
<a href="#" class="btn btn1">
Hover Me!
</a>
</h2>
<h2 class="btn-cont">
<p>Swipe button effect!</p>
<a href="#" class="btn btn2">
Hover Me!
</a>
</h2>
<h2 class="btn-cont">
<p>Creative button effect!</p>
<a href="#" class="btn btn3">
Hover Me!
</a>
</h2>
<h2 class="btn-cont">
<p>Stretching effect!</p>
<a href="#" class="btn btn4">
Hover Me!
</a>
</h2>
<h2 class="btn-cont">
<p>Swipe top to bottom effect!</p>
<a href="#" class="btn btn5">
Hover Me!
</a>
</h2>
<h2 class="btn-cont">
<p>Glowing effect!</p>
<a href="#" class="btn btn6">
Hover Me!
</a>
</h2>
<h2 class="btn-cont">
<p>Two layers swapping effect!</p>
<a href="#" class="btn btn7">
Hover Me!
</a>
</h2>
<h2 class="btn-cont">
<p>Text scaling button!</p>
<a href="#" class="btn btn8">
Hover Me!
</a>
</h2>
<h2 class="btn-cont">
<p>Circular swapping button!</p>
<a href="#" class="btn btn9">
Hover Me!
</a>
</h2>
<h2 class="btn-cont">
<p>Rotating 3 layers button!</p>
<a href="#" class="btn btn10">
Hover Me!
</a>
</h2>
<h2 class="btn-cont">
<p>Swapping from left to right!</p>
<a href="#" class="btn btn11">
Hover Me!
</a>
</h2>
<h2 class="btn-cont">
<p>3 circles to background button!</p>
<a href="#" class="btn btn12">
<span></span>
Hover Me!
</a>
</h2>
<h2 class="btn-cont">
<p>Creative hover effect!</p>
<a href="#" class="btn btn13">
Hover Me!
</a>
</h2>
<h2 class="btn-cont">
<p>Splitted button effect!</p>
<a href="#" class="btn btn14">
<span>
Hover Me!
</span>
</a>
</h2>
<h2 class="btn-cont">
<p>Creative border swapping effect!</p>
<a href="#" class="btn btn15">
Hover Me!
</a>
</h2>
<h2 class="btn-cont">
<p>Border growing button!</p>
<a href="#" class="btn btn16">
Hover Me!
</a>
</h2>
<h2 class="btn-cont">
<p>First letter rotating button!</p>
<a href="#" class="btn btn17">
<span>H</span>over Me!
</a>
</h2>
</div>
</body>
</html>