-
Notifications
You must be signed in to change notification settings - Fork 0
/
player.html
45 lines (34 loc) · 1.21 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
<!DOCTYPE html>
<html lang="en">
<title>Web Player</title>
<head>
<link rel="stylesheet" href="player_design.css" type="text/css">
<script src="player_feature.js" type="text/javascript"></script>
</head>
<body>
<div id="video-player">
<div id="video-container">
<video id="video">
<source src="http://video.tune9.com/english/Adele%20Hello%20720p%20Full%20Hd%20Video%20Song.mp4">
</video>
</div>
<div id="controls">
<div id="pbar_container">
<div id="pbar"></div>
</div>
<div id="play">
<img src="images/play.png" id="play_button" />
</div>
<div id="sound">
<img src="images/volume.png" id="soundbutton" />
</div>
<div id="sound_container">
<div id="sbar"></div>
</div>
<div id="fullscreen">
<img src="images/fullscreen.png" id="fullscreenbutton"/>
</div>
</div>
</div>
</body>
</html>