-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathplayer.html
57 lines (55 loc) · 1.69 KB
/
player.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 http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width,inital-scale=1,maximum-scale=1,user-scalable=0"/>
<meta name="description" content>
<meta name="author" content>
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/player.css" rel="stylesheet">
<title>bilibili</title>
</head>
<body>
<header>
<div class="head">
<a href="index.html">
<h3>bilibili</h3>
</a>
</div>
</header>
<!-- 16:9 aspect ratio -->
<div>
<video controls autoplay name="media">
<source src="http://clips.vorwaerts-gmbh.de/big_buck_bunny.mp4" type="video/mp4">
</video>
</div>
<div class="container-fluid container-fluid-add">
<div style="float: left;">
<img src="image/avatar.jpg" class="img-circle"/>
</div>
<div style="float: left; margin-left: 5px;">
<p>UP主:Luosunce</p>
<p style="color: #fb7299">围观UP主的全部投稿</p>
</div>
<div style="float: right;border-bottom: 1px #e0e0e0 solid;">
<input class="attention" type="button" value="关注"/>
</div>
<div class="other">
<span>主页>动画>短片・手书・配音</span>
<span style="color: #fb7299">>av8846918</span>
</div>
<div>
<table width="90%">
<tr>
<td><span>播放:9367</span></td>
<td><span>弹幕:58</span></td>
<td><span>收藏:1176</span></td>
</tr>
</table>
</div>
</div>
<script src="js/jquery-3.1.1.min.js"></script>
<script src="js/bootstrap.min.js"></script>
</body>
</html>