-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
40 lines (40 loc) · 1.07 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Stair-Animation</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1 class="h1">Every Problem Is A Step to Success</h1>
<div class="stairs" title="hover the steps for ADDON effect">
<div class="base"></div>
<div class="step" style="--j:1">
<i></i>
<i></i>
</div>
<div class="step" style="--j:2">
<i></i>
<i></i>
</div>
<div class="step" style="--j:3">
<i></i>
<i></i>
</div>
<div class="step" style="--j:4">
<i></i>
<i></i>
</div>
<div class="step" style="--j:5">
<i></i>
<i></i>
</div>
<div class="step" style="--j:6">
<i></i>
<i></i>
</div>
</div>
</body>
</html>