-
Notifications
You must be signed in to change notification settings - Fork 5
/
index.html
98 lines (79 loc) · 1.63 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
<!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>mfunsPlayer</title>
</head>
<style type="text/css">
* {
margin: 0;
padding: 0;
}
@media screen and (max-width: 1000px) {
.test-title {
font-size: 30px !important;
}
.test-tip {
font-size: 16px !important;
}
}
a {
text-decoration: none;
}
.test-title,
.test-tip {
width: 100%;
text-align: center;
}
.test-title {
font-size: 40px;
color: #3199ff;
}
.test-tip {
color: #f00;
font-size: 25px;
}
.scene {
margin-top: 50px;
width: 100%;
/* display: flex; */
text-align: center;
}
.scene-title {
font-size: 16px;
font-weight: 800;
}
ul {
list-style: none;
}
li {
margin: 10px auto;
}
</style>
<body>
<h2 class="test-title">mfunsPlayer v2.1.0 测试</h2>
<h4 class="test-tip">注:请尽量使用谷歌或者火狐内核的浏览器进行测试</h4>
<ul class="scene">
<div class="scene-title">使用场景:</div>
<li>
<a href="./pages/base.html">基础</a>
</li>
<li>
<a href="./pages/normal.html">普通</a>
</li>
<li>
<a href="./pages/list.html">分p切集</a>
</li>
<li>
<a href="./pages/bangumi.html">番剧</a>
</li>
<li>
<a href="./pages/extra.html">弹幕拓展功能</a>
</li>
</ul>
</body>
<script>
</script>
</html>