-
Notifications
You must be signed in to change notification settings - Fork 13
/
index.html
30 lines (30 loc) · 994 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Pragma" content="no-cache">
<meta http-equiv="Expires" content="-1">
<title id="page_title"></title>
<link rel="stylesheet" type="text/css" href="scripts/style.css">
<script type="text/javascript" src="scripts/index.js"></script>
<script type="text/javascript" src="scripts/communication.js"></script>
</head>
<body onload="init()">
<h1 id="demo_header">Native Player</h1>
<div id="main_menu">
<div id="clip_menu">
<div id="left" class="other"></div>
<div id="center" class="center" onclick="showPlayer()"></div>
<div id="right" class="other"></div>
</div>
<div id="sub_menu">
<div id="subtitles"><font color="white">Subtitles:</font><br>
<select id="subtitles_menu"></select>
</div>
</div>
<div id="main_buttons">
<button id="previous" onclick="changeClip(-1)"></button>
<button id="next" onclick="changeClip(1)"></button>
</div>
</div>
</body>
</html>