-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
98 lines (75 loc) · 2.93 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
88
89
90
91
92
93
94
95
96
97
98
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="css/style.css">
<title>Chillax</title>
<link rel="icon" href="Assets/logo.png">
<!-- Database files -->
<link rel="stylesheet" type="text/css" href="css/db8.css">
<script type="text/javascript" charset="utf-8" src="javascripts/db8.js"></script>
<script type="text/javascript">
window.addEventListener("load", function () { initPage() }, false);
</script>
<!-- Database files -->
</head>
<script src="https://luke-chang.github.io/js-spatial-navigation/spatial_navigation.js"></script>
<script src="javascripts/eventListeners.js"></script>
<script>
window.addEventListener('load', function() {
SpatialNavigation.init();
SpatialNavigation.add({
selector: '.item'
});
SpatialNavigation.makeFocusable();
addEventListeners();
});
</script>
<script src="webOSTVjs-1.2.4/webOSTV.js" charset="utf-8"></script>
<script src="webOSTVjs-1.2.4/webOSTV-dev.js" charset="utf-8"></script>
<body>
<header>
<a class="item" tabindex="0" href="index.html"><img class="Mainlogo" src="Assets/logo.png"/></a>
<form id="form">
<a href="watched.html"><button type="button" class="watch item" tabindex="0" >Watched</button></a>
<a href="watch_list.html"><button type="button" class="watch item" tabindex="0">Watch List</button></a>
<button type="button" onclick="RefreshDB()" class="watch">Clear List</button>
<input type="text" placeholder="Search" id="search" class="search item" tabindex="0">
</form>
</header>
<!-- DataBase test -->
<!-- <div id="container">
<div class="control">
<p>
<button id="putKind">putKind</button>
<button id="delKind">delKind</button>
</p>
<div id="log"></div>
</div>
<div id="db"></div>
</div> -->
<!-- DataBase test -->
<!-- Getting key number of remote -->
<!-- <div style="color: aliceblue;" id="results">
<h1>Press a Key</h1>
</div> -->
<!-- Getting key number of remote -->
<div id="tags" tabindex="-1"></div>
<div id="myNav" class="overlay">
<!-- Button to close the overlay navigation -->
<a href="javascript:void(0)" class="closebtn" onclick="closeNav()">×</a>
<!-- Overlay content -->
<div class="overlay-content" id="overlay-content"></div>
<a href="javascript:void(0)" class="arrow left-arrow" id="left-arrow">⇐</a>
<a href="javascript:void(0)" class="arrow right-arrow" id="right-arrow" >⇒</a>
</div>
<main id="main"></main>
<div class="pagination">
<div class="page" id="prev">Previous Page</div>
<div class="current" id="current">1</div>
<div class="page" id="next">Next Page</div>
</div>
<script src="javascripts/script.js"></script>
<script src="javascripts/remote.js"></script>
</body>
</html>