-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
42 lines (39 loc) · 1012 Bytes
/
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
<!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>JavaScript 简单效果</title>
<style>
/* init css */
a {
text-decoration: none;
color: #000;
}
/* demo-list css */
.demo-list {
margin: 50px auto;
min-width: 500px;
}
.demo-list li a {
font-size: 15px;
transition: color ease .5s;
}
/* hover 效果 */
.demo-list li a:hover {
text-decoration: underline;
color: #099292;
}
</style>
</head>
<body>
<ol class="demo-list">
<li><a href="./dialog/dialog.html">弹窗组件</a></li>
<li><a href="./dist/index.html">登陆效果</a></li>
<li><a href="./animate/animate.html">排名改变动画效果</a></li>
<li><a href="./menus/menus.html">点菜功能</a></li>
<li><a href="./life/index.html">向往的生活</a></li>
</ol>
</body>
</html>