-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
62 lines (62 loc) · 1.35 KB
/
index.html
File metadata and controls
62 lines (62 loc) · 1.35 KB
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
<html>
<head>
<meta http-equiv=Content-Type content="text/html;charset=utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
<style>
* {
padding: 0;
margin: 0;
list-style: none;
font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif
}
body {
background-color: #000;
}
.vd {
text-align: center;
}
.vd video {
width: 100%
}
.title {
position: absolute;
color: rgba(255, 255, 255, .75);
top: 20;
text-align: center;
width: 100%;
line-height: 1.5;
z-index: 999;
}
.title .main {
font-size: 60px;
font-weight: bold;
}
.title .info {
font-size: 30px;
}
.title .info a {
font-size: 14px;
color: #FFF;
}
footer {
position: absolute;
text-align: center;
bottom: 10px;
}
</style>
</head>
<body>
<div class="vd">
<video src="./static/show.mp4" controls="controls" autoplay="autoplay" muted loop="loop"
webkit-playsinline="true"
x5-video-player-type="h5"
x5-video-orientation="h5"
x5-video-player-fullscreen="true">
你的浏览器不支持 video 标签。
</video>
</div>
<div class="title">
<div class="main">网 络 爬 虫 </div>
</div>
</body>
</html>