-
Notifications
You must be signed in to change notification settings - Fork 7
/
player.html
42 lines (38 loc) · 992 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-type" content="text/html; charset=utf-8;">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="user-scalable=no, initial-scale=1.0, maximum-scale=1.0, width=device-width">
<title>Paella Player Example</title>
<script type="text/javascript" src="paella/paella-player.min.js"></script>
</head>
<body id="body">
<div id="playerContainer"></div>
</body>
<style>
body {
background-color: #000;
height: 100%;
width: 100%;
overflow: hidden;
position: absolute;
margin: 0;
padding: 0;
font-family: helvetica, arial, sans-serif;
}
#playerContainer {
width: 100%;
height: 100%;
}
.preview-container {
background-color: #000 !important;
}
.video-container {
background-color: #000;
}
.base-video-rect {
background-color: #000;
}
</style>
</html>