-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
87 lines (63 loc) · 2.62 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./assets/css/styles.css">
<title>TubeSim</title>
<link rel="icon" type="image/x-icon" href="favicon.ico" />
<script type="text/javascript" src="./src/functions.js"></script>
<!--initLocalStroage must be run as these values are needed for the next scripts-->
<script>run.initiateLocalStorage();</script>
<script type="text/javascript" src="./src/data/channels.js" ></script>
<script type="text/javascript" src="./src/elements.js" ></script>
<script type="text/javascript" src="./src/variables.js" ></script>
<script type="text/javascript" src="./src/input.js" ></script>
<script type="text/javascript" src="./src/inputFunctions.js" defer></script>
<script type="text/javascript" src="./src/video.js" ></script>
</head>
<body style="background-color:black; ">
<audio id="audioPlayer" autoplay>
<source id="soundSrc" src="./assets/sound/staticSound.ogg" type="audio/ogg">
</audio>
<img id="staticImage" src="./assets/img/static.gif" alt="tv Static" />
<h2 id="channelNameDisplay">Error - Check console log</h2>
<div id="chListDisp">
<ol id="chList"> </ol>
<ol id="chList2"> </ol>
<p id="controlsScreen">
| Key | Action |
| ------------ | ------------------ |
| + PgUp | Channel Up |
| - PgDwn | Channel Down |
| Number 0-9 | Enter a channel |
| * | Vol+ |
| / | Vol- |
| . , | Channel List |
| F5/Insert | Reload Page |
| Home | Pseudo power down |
| End |Skip episode forever|
|-----------------------------------|
| While channels list is open |
|-----------------------------------|
| Input 99 | Clear Current Ch Mem |
| Input 98 | Clear all Ch Memory |
| CH+/Ch- | Adjust Overscan |
|Arrow Keys| Hor/Vert Shift |
| Del | CRT Filter |
</p>
</div>
<h2 id="chEntry"></h2>
<h2 id="volume">Volume []</h2>
<div class="screenElements">
<div class="scanlines R-bloom "> </div>
<div class="scanlines G-bloom "> </div>
<div class="scanlines B-bloom "> </div>
<div class="mask"></div>
</div>
<div id="player" class="crt"></div>
<!--<script type='module' src="./src/index.js"></script>-->
<script src="./assets/js/script.js"></script>
</body>
</html>