-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
28 lines (28 loc) · 951 Bytes
/
Copy pathindex.html
File metadata and controls
28 lines (28 loc) · 951 Bytes
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
<!doctype html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link href="https://cdn.bootcss.com/font-awesome/5.10.2/css/all.css" rel="stylesheet">
<title>FplayerDEMO</title>
<style>
body{
background-image: url(../img/bgc.png);
}
#fplayer{
margin-top: 165px;
margin-left: 250px;
}
</style>
</head>
<body>
<div id="fplayer" style="width: 1260px;height: 820px" class="fplayer">
<video id="video">
<source src="video/video.mp4" />
</video>
</div>
<script src="./js/Fplayer.js"></script>
</body>
</html>