-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathPixelHomePage.html
240 lines (221 loc) · 6.63 KB
/
PixelHomePage.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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title>Pixel Library</title>
<!--Javascript Library Import-->
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
<!--/-->
<!--Javascript Tab Import-->
<script type="text/javascript" src="Javascript _Imports/TabSystemJS.js"></script>
<!--/-->
<!--Javascript Top Five Import-->
<script type="text/javascript" src="Javascript _Imports/TopFiveListJS.js"></script>
<script type="text/javascript" src="Javascript _Imports/ToggleTop5JS.js"></script>
<!--/-->
<!--Search Imports-->
<script type="text/javascript" src="Javascript _Imports/MovieSearchJS.js"></script>
<script type="text/javascript" src="Javascript _Imports/TVSearchJS.js"></script>
<script type="text/javascript" src="Javascript _Imports/GameSearchJS.js"></script>
<script type="text/javascript" src="Javascript _Imports/EverythingSearchJS.js"></script>
<!--/-->
<!--Main StyleSheet Import-->
<link rel="stylesheet" type="text/css" href="Styling_and_Images/ButtonDesigns.css">
<link rel="stylesheet" type="text/css" href="Styling_and_Images/PixelMainStyle.css">
<link rel="stylesheet" type="text/css" href="Styling_and_Images/SearchStyles.css">
<!--/-->
<!--Hide Imports-->
<script type="text/javascript" src="Javascript _Imports/HideJS.js"></script>
<!--/-->
<!--Show Imports-->
<script type="text/javascript" src="Javascript _Imports/ShowJS.js"></script>
<!--/-->
<script></script>
</head>
<!--Main Body and tab system-->
<body onload="init()" id="HomeBackground">
<center>
<img src="Styling_and_Images/MainLogoWhite.png" alt="Logo" width="300" height="250">
<br />
<br />
<br />
<!--Tab System-->
<ul id="tabs">
<li><a href="#one" class="selected">Search For Everything</a></li>
<li><a href="#two">Search For Movies</a></li>
<li><a href="#three">Search For Tv-shows</a></li>
<li><a href="#four">Search For Games</a></li>
</ul>
<!--End of Tab-->
<!--Start of everything Tab Information and Code-->
<div class="tabContent" id="one">
<h3><i>Why Not Search Everything</i></h3>
<div id="ESearchDiv">
<input id="ESearch" type="text" value="" />
<br />
<h4><i>"Are you to Lazy the default preference order is Movie,Tv and Games"</i></h4>
<select id="pref1select"class="preferenceSelect">
<option value="M">Preference One</option>
<option value="M">Movie</option>
<option value="T">Tv</option>
<option value="G">Games</option>
</select>
<select id="pref2select"class="preferenceSelect">
<option value="T">Preference Two</option>
<option value="M">Movie</option>
<option value="T">Tv</option>
<option value="G">Games</option>
</select>
<select id="pref3select"class="preferenceSelect">
<option value="G">Preference Three</option>
<option value="M">Movie</option>
<option value="T">Tv</option>
<option value="G">Games</option>
</select>
<br />
<input id="ESearchButton" class="Sbutton" type="button" value="Search Now" onclick="ShowEverythingResults();"/>
</div>
</div>
<!--End of Everything Search Tab information and code-->
<!--Start of Movies Tab Information and Code-->
<div class="tabContent hide" id="two">
<h3><i>Search for a Movie</i></h3>
<div id="MSearchDiv">
<input id="MSearch" type="text" value="" />
<br />
<br />
<input id="MSearchButton" class="Sbutton" type="button" value="Search Now" onclick="ShowMovieResults();"/>
<br />
<h4><i>"Movies there running out of idea's just look at Noah, Spoiler It Rains"</i></h4>
</div>
</div>
<!--End of Movies Tab information and code-->
<!--Start of tv Tab Information and Code-->
<div class="tabContent hide" id="three">
<h3><i>Search for a Tv-show</i></h3>
<div id="TSearchDiv">
<input id="TSearch" type="text" value="" />
<br />
<br />
<input id="TSearchButton" class="Sbutton" type="button" value="Search Now" onclick="ShowTVResults();"/>
<br />
<h4><i>"Lots of great tv shows like Game of Thrones, every episode we hope Trion doesnt die"</i></h4>
</div>
</div>
<!--End of tv Tab information and code-->
<!--Start of games Tab Information and Code-->
<div class="tabContent hide" id="four">
<h3><i>Search for a Game</i></h3>
<div id="GSearchDiv">
<input id="GSearch" type="text" value="" />
<br />
<br />
<input id="GSearchButton" class="Sbutton" type="button" value="Search Now" onclick="ShowGameResults();"/>
<br />
<h4><i>"Games their blamed for everything wrong with youths, yup EVERYTHING HA!"</i></h4>
</div>
</div>
<!--End of games Tab Information and Code-->
<!--Movie Results-->
<div id="infoMovies">
<div id="MovieTitle">
</div>
<div id="MoviePoster">
</div>
<div id="MovieContent">
</div>
<div id="MovieReview">
</div>
<div id="MovieYotubeTrailer">
</div>
</div>
<!--Search Divs for movies-->
<div id="MovieTitleBar">
<h3>Movie Results</h3>
</div>
<br />
<div id="MovieResults">
</div>
<!--End of Movies Results-->
<!--TV Show Results-->
<div id="infoTV">
<div id="TVTitle">
</div>
<div id="TVPoster">
</div>
<div id="TVContent">
</div>
<div id="TVReview">
</div>
<div id="TVYotubeTrailer">
</div>
</div>
<!--Search Divs for tv shows-->
<div id="TVTitleBar">
<h3>TV Show Results</h3>
</div>
<br />
<div id="TVResults">
</div>
<!--End of Tv Show Results-->
<!--Game Results-->
<div id="infoGame">
<div id="GameTitle">
</div>
<div id="GamePoster">
</div>
<div id="GameContent">
</div>
<div id="GameReview">
</div>
<div id="GameYotubeTrailer">
</div>
<div id="GameTwitch">
<h3>Check Out Some Of The Top Streams</h3>
<hr>
<iframe id="TwitchPlayer" name="frame1" type="text/html" width="600" height="370" src="" frameborder="1"/></iframe>
<div id="TitleWindow">
<h4>Twitch Streamers</h4>
</div>
<div id="StreamList">
</div>
</div>
</div>
<!--Search Divs for Game-->
<div id="GameTitleBar">
<h3>Game Results</h3>
</div>
<br />
<div id="GameResults">
</div>
<!--End of Game-->
<!--Everything Div Start-->
<div id="container">
<div id="titleP1">
<h3>Preference One</h3>
</div>
<div id="titleP2">
<h3>Preference Two</h3>
</div>
<div id="titleP3">
<h3>Preference Three</h3>
</div>
<div id="pref1"></div>
<div id="pref2"></div>
<div id="pref3"></div>
</div>
<!--End-->
<br />
<!--Box office and Popular tv shows results div-->
<div id="TopListWrapperMovie">
<h4>Box Office Showings</h4>
<div id="TopListMovie">
</div>
</div>
<div id="TopListWrapperTV">
<h4>Popular Tv Shows</h4>
<div id="TopListTV">
</div>
</div>
<!--/-->
</center>
</body>
</html>