-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
40 lines (36 loc) · 1.25 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
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="build/cvp.css">
<title>Ceicom Video Player</title>
</head>
<body>
<div class="cvp-player-wrapper">
<div id="cvp-player"></div>
<div class="cvp-player">
<button type="button" class="btn play-btn"></button>
<div class="progress-bar-wrapper">
<div class="progress-bar"></div>
</div>
<div class="volume-wrapper">
<div class="volume-action-wrapper">
<input type="range" name="points" min="0" max="10" value="10" orient="vertical"
class="volume-input">
</div>
</div>
<div class="time">00:00 / 00:00</div>
<div class="expand-button"></div>
</div>
</div>
<script src="https://code.jquery.com/jquery-3.4.0.min.js"></script>
<script src="build/cvp.js"></script>
<script>
var debugVideo;
$.ajax('test/video.json').then(function (data) {
debugVideo = new CeicomVideoPlayer(data);
});
</script>
</body>
</html>