-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
41 lines (30 loc) · 1.11 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
41
<!DOCTYPE html>
<html>
<head>
<title>Tutorial Player</title>
<link rel="stylesheet" type="text/css" href="player/custom.css?v1" />
</head>
<body odndrop="drop(event)" odndragover="allowDrop(event)">
<div id="custom-seekbar">
<span></span>
</div>
<div class="tutorial-player">
<div class="list-wrapper">
<select id="tutorialList" class="list"></select>
<button id="selectListBtn" class="list-load-button">...</button>
</div>
<div class="player-wrapper">
<div id="video_title" class="video-title"></div>
<video id="video_player" controls class="player" width="100%" height="100%" poster="" preload="none">
<source src="" type='video/mp4' />
<track kind="captions" id="playerCaption" src="" srclang="en" label="English">
</track>
</video>
<!-- <div id="seekbar" class="seekbar">
<span id="seekbar_pos" class="seekbar-pos"></span>
</div> -->
</div>
</div>
</body>
<script src="player/index.js?v5"></script>
</html>