-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
57 lines (50 loc) · 1.43 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Canvas 动画</title>
<style>
html,
body {
width: 100%;
height: 100%;
}
body {
background-color: #1fc8db;
background-image: linear-gradient(141deg, #9fb8ad 0%, #1fc8db 51%, #2cb5e8 75%);
color: white;
opacity: 0.95;
margin: auto;
font-size: 30px;
font-weight: 550;
}
#container {
padding: 2em 5em;
}
a {
text-decoration: none;
}
</style>
</head>
<body>
<div id="container">
<h1>Canvas 动画</h1>
<ul>
<li>🌞鼠标圆圈<a href="./circle/index.html"> 👉👉🏿👉🏻</a></li>
<li>⏰时钟 <a href="./clock/index.html"> 👉👉🏿👉🏻</a></li>
<li>🌐连线动画<a href="./line/index.html"> 👉👉🏿👉🏻</a></li>
<li>
☔️雨滴效果
<ul>
<li><a href="./rainday/demo1.html">1︎⃣ 👉👉🏿👉🏻</a></li>
<li><a href="./rainday/demo2.html">2︎⃣ 👉👉🏿👉🏻</a></li>
</ul>
</li>
<li>👀CSS3实现写轮眼动画<a href="./html5-eyes/index.html"> 👉👉🏿👉🏻</a></li>
<li>➖CSS3激光宝剑动画<a href="./html5-css3-swords/index.html"> 👉👉🏿👉🏻</a></li>
</ul>
</div>
</body>
</html>