-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This is part 2 of the Iframe Overhaul™, a 4-part overhaul that makes WebTV HD act more like real WebTV. Things added: Tab navigation! The selection box FINALLY moves a bit more like real WebTV. Loading indicator (sorta - the scripting isn't done) Statusbar audioscope (still have to fix toggling and stuff) Changelog: Finally fixed 404 page by using direct links. Separated main and service styles into two different stylesheets. Changed external links so they open in a new window (since iframe-embedding them doesn't work). Fixed top bar shadow on the chat page. Added loading panel styles and HTML (JS isn't done yet). Separated mail styles into their own style sheet, decreasing the size of style.css. Made progressbar and its animation global. (Why were they PowerOn-exclusive to begin with?) Added variables for cursors and fonts. Removed "What's on TV" link from home page for accuracy (since WebTV HD acts mostly like a Plus box). Fixed Mail and Search links for localhost (only noticeable if self-hosting). Changed wording on home page. Removed Main.html since the index page works fine for that purpose. Added loading globe images for the loading panel. Fixed sidebar toggle button. Fixed options bar on mobile. Updated Weezer jewel logo. Fixed asbestos easter egg (again). Made resetSelectionBox work better for iframe pages. Made PowerOn js slightly more IE-compatible. (Why am I even bothering?) Updated template pages. Removed duplicate statusbar on Music page. Removed unnecessary closing tags on some pages. Added redirect to non-iframe pages because some people don't get that you need to use the iframe page to have the statusbar (looking at you, Fumo kid) Made the "How do I try this?" section more prominent so new users know where to go.
- Loading branch information
Showing
46 changed files
with
1,271 additions
and
637 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,41 +1,41 @@ | ||
<!DOCTYPE HTML> | ||
<html><head> | ||
<title>Page Not Found</title> | ||
<link rel=stylesheet type=text/css href=../../css/style.css> | ||
<link rel=stylesheet type=text/css href=../../css/home.css> | ||
<link rel="shortcut icon" href=../../Icon.png> | ||
<link rel=apple-touch-icon href=../../images/AppleTouchIcon.png> | ||
<script src=../../js/main.js></script> | ||
<script src=../../js/home.js></script> | ||
<link rel=stylesheet type=text/css href=https://skcro.github.io/WebTV-HD/css/style.css> | ||
<link rel=stylesheet type=text/css href=https://skcro.github.io/WebTV-HD/css/home.css> | ||
<link rel=stylesheet type=text/css href=https://skcro.github.io/WebTV-HD/css/service.css> | ||
<link rel="shortcut icon" href=https://skcro.github.io/WebTV-HD/Icon.png> | ||
<link rel=apple-touch-icon href=https://skcro.github.io/WebTV-HD/images/AppleTouchIcon.png> | ||
<script src=https://skcro.github.io/WebTV-HD/js/main.js></script> | ||
<script src=https://skcro.github.io/WebTV-HD/js/home.js></script> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<meta name="application-name" content="WebTV HD"> | ||
</head> | ||
<body> | ||
<audio id=clickSound src=../../audio/click.mp3 preload=auto></audio> | ||
<audio id=inputSound src=../../audio/inputClick.mp3 preload=auto></audio> | ||
<audio id=submitSound src=../../audio/submitClick.mp3 preload=auto></audio> | ||
<audio id=errorSound src=../../audio/error.mp3 preload=auto></audio> | ||
<audio id=panelUp src=../../audio/up.mp3 preload=auto></audio> | ||
<audio id=panelDown src=../../audio/down.mp3 preload=auto></audio> | ||
</head><body> | ||
<audio id=clickSound src=https://skcro.github.io/WebTV-HD/audio/click.mp3 preload=auto></audio> | ||
<audio id=inputSound src=https://skcro.github.io/WebTV-HD/audio/inputClick.mp3 preload=auto></audio> | ||
<audio id=submitSound src=https://skcro.github.io/WebTV-HD/audio/submitClick.mp3 preload=auto></audio> | ||
<audio id=errorSound src=https://skcro.github.io/WebTV-HD/audio/error.mp3 preload=auto></audio> | ||
<audio id=panelUp src=https://skcro.github.io/WebTV-HD/audio/up.mp3 preload=auto></audio> | ||
<audio id=panelDown src=https://skcro.github.io/WebTV-HD/audio/down.mp3 preload=auto></audio> | ||
<div id=selectionbox></div> | ||
|
||
<div class=sidebar style=background-color:#3C3C56;> | ||
<div class=sidebar-contents> | ||
<img class="sidebar-logo clickable" src=../../images/WebTVJewel.svg alt="WebTV Logo." onClick="linkHandler('../../Home.html');"> | ||
<img class="sidebar-logo clickable" src=https://skcro.github.io/WebTV-HD/images/WebTVJewel.svg alt="WebTV Logo." onClick="linkHandler('https://skcro.github.io/WebTV-HD/Home.html');"> | ||
<div class="sidebar-border home"></div> | ||
</div> | ||
<div class=bottom-right-image style="max-height: 8vw"> | ||
<img alt="Warning Triangle" src=../../images/404.svg> | ||
<img alt="Warning Triangle" src=https://skcro.github.io/WebTV-HD/images/404.svg> | ||
</div> | ||
<div class=sidebar-shadow></div> | ||
</div> | ||
|
||
<div class=main-content> | ||
<h1>Page Not Found</h1> | ||
<p>WebTV could not find the requested page. If you followed a link or used a bookmark to get here, the content you're looking for may have been moved or deleted.</p> | ||
<button class="asbestos submit" tabindex=1 onclick="asbestos();">asbestos</button> | ||
<button class="asbestos submit" tabindex=0 onclick="asbestos();">asbestos</button> | ||
<div class=border><hr class=print-only></div> | ||
<button class="submit ButtonBorder2" onClick="linkHandler('../../Home.html');">Home</button> | ||
<button class="submit ButtonBorder2" onClick="linkHandler('https://skcro.github.io/WebTV-HD/Home.html');">Home</button> | ||
</div> | ||
</body></html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.