-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
115 lines (97 loc) · 2.88 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width,
initial-scale=1.0, maximum-scale=1.0, user-scalable=0">
<title>项目导航</title>
<style>
html {
font-size: 25vw;
}
@media screen and (max-width:320px) {
html {
font-size: 80px;
}
}
@media screen and (min-width: 650px) {
html {
font-size: 120px;
}
}
* {
padding: 0;
margin: 0;
}
li {
list-style: none;
}
a {
text-decoration: none;
color: #333;
}
body {
background-color: #ffffff;
padding-bottom: 2rem;
overflow-x: hidden;
}
h2 {
background-color: #00a4ff;
padding: 0.16rem;
color: #fff;
font-size: 0.28rem;
text-align: center;
width: 100%;
min-width: 320px;
}
.center {
width: 3.8rem;
text-align: center;
margin: 0.2rem auto;
border: 0.02rem solid #00a4ff;
border-radius: 0.16rem;
}
.center li {
/*border-bottom: 2px solid #00a4ff;*/
font-size: 0.22rem;
font-weight: 900;
color: #00a4ff;
text-align: left;
}
.center a {
display: block;
border-radius: 0.1rem;
padding: 0.06rem 0.2rem;
line-height: 0.42rem;
color: #00a4ff;
}
.center a:hover {
color: #fff;
background-color: #00a4ff;
box-shadow: 0.04rem 0.04rem 0.1rem rgba(0, 0, 0, .3);
}
</style>
</head>
<body onselectstart="return false">
<h2>项目导航</h2>
<div class="center">
<ul>
<li><a href="./01-xczx-study/index.html">1. 学成在线-首页</a></li>
<li><a href="./02-pyh-mall/index.html">2. 品优购商城-首页</a></li>
<li><a href="./03-xian/index.html">3. 小兔鲜儿商城-首页</a></li>
<li><a href="./04-baidu-search/index.html">4. 百度搜索</a></li>
<li><a href="./05-mobile-爱学习案例/02-爱学习-移动端布局.html">5. 爱学习-移动端布局</a></li>
<li><a href="./06-yyb/index.html">6. 腾讯-应用宝首页</a></li>
<li><a href="./07-京东移动端案例/index.html">7. 京东移动端首页</a></li>
<li><a href="./08-携程网移动端布局/index.html">8. 携程网移动端首页</a></li>
<li><a href="./09-江苏统一战线投票/index.html">9. 微信投票案例-vue实现</a></li>
<li><a href="./10-B站移动端首页/index.html">10. bilibli移动端首页(vw布局)</a></li>
<li><a href="./11-mall/index.html">11. 模仿蘑菇街商城项目(vue+vue-router+vuex)</a></li>
<li><a href="./12-music/index.html">12. 仿网易云音乐</a></li>
<li><a href="./13-yanxuan/index.html">13. 仿网易严选(vue+vue-router+vuex)</a></li><li><a href="./14-draggable-comp/index.html">14.拖拽界面配置</a></li>
</ul>
</div>
<script>
</script>
</body>
</html>