-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
124 lines (110 loc) · 4.67 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
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
<html lang="en">
<head>
<title>The Silence of Luz - The Owl House Hiatus Tracker</title>
<meta charset="UTF-8">
<meta name="description" content="Tracks the length since the end of the Disney Channel show,
The Owl House, as well as keeping a list of previous hiatuses.">
<link rel="stylesheet" type="text/css" href="style/style.css">
<link rel="icon" href="images/icon.ico" type="image/x-icon"/>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css">
<script src="javascripts/script.js" defer></script>
<script src="javascripts/modal.js" defer></script>
<script src="javascripts/youtube.js" defer></script>
<script src="javascripts/navbar.js" defer></script>
<script src="javascripts/jquery-3.6.0.min.js"></script>
<script>
$(window).on("load", function() {
$("#loader").fadeOut("slow");;
$("#page").fadeIn("slow");;
});
</script>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-K6ZB328E2W"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-K6ZB328E2W');
</script>
</head>
<body onload="createTable(hiatusList);">
<div id="loader"></div>
<div style="display:none;" id="page">
<div id="info">
<div class="info-content">
<span class="close">×</span>
<p>This website tracks the length since the end of the show The Owl House as well as previous hiatuses. <br> A hiatus is a time period starting from the end
of one announced schedule to the begining of another.
<br>This site is <b>not official</b> and is maintained by one person.
</div>
</div>
<button id="infoBtn">i</button>
<div class="topnav" id="myTopnav">
<a class = "website" href="https://xman2156.github.io/atla/">ATLA</a>
<div class= "active dropdown">
<button class="dropbtn">The Graveyard
<i class="fa-solid fa-caret-down"></i>
</button>
<div class="dropdown-content">
<a href="https://xman2156.github.io/arcane/">Arcane</a>
<a class = "active" href="https://xman2156.github.io/TOH/">The Owl House</a>
<a href="https://xman2156.github.io/amphibia/">Amphibia</a>
<a href="https://xman2156.github.io/spop/">She-Ra</a>
<a href="https://xman2156.github.io/infinitytrain/">Infinity Train</a>
</div>
</div>
<button id="navBtn" class="icon">
<i id="navIcon" class="fa-solid fa-bars"></i>
</button>
<a class = "report website" target="_blank" href="https://forms.gle/amwnqCuJJHjYkppz5">Report a bug or ask a question</a>
</div>
<!--<div class="alert" id="alert">
<span class="closebtn">×</span>
<strong>Help out!</strong> Do you use the website or do you use the web app?
Answer <a target="_blank" href="https://forms.gle/criaNhmmfXzYq56b7">here.</a>
</div>-->
<div class="count">
<h1>It has been</h1>
<h1 style="font-size:600%">
<span id="count">xxx</span></h1>
<h1>
since <br> The Owl House ended
</h1>
</div>
<div class="tab">
<p style="font-size:150%">
<a onclick=switchMode() id="changeCount"> Click here <span id="moreorless">to count less precisely.</span></a>
</p>
<hr class="spacer">
<div class="list">
<h1> The Grand List of Hiatuses </h1>
<table id="hiatus"></table>
<br>
<hr class="spacer">
</div>
<div class="trailers">
<h2>Watch all of Season 3</h2>
<div id="youtube">
<div class="play-button"></div>
</div>
</div>
<hr class="spacer">
<div class="link">
<h3>
You can find me on <a class="links" target="_blank" href="https://github.com/xman2156">GitHub</a> & <a class="links" target="_blank" href="https://twitter.com/AnimationHiatus">Twitter</a><br>
<a class="links" target="_blank" href="https://github.com/TurtleByte/stevenhiatus/tree/gh-pages"> Credit to TurtleByte for original idea</a>
</h3>
<br>
</div>
</div>
</div>
<script>
var close = document.getElementsByClassName("closebtn");
close[0].onclick = function(){
var div = this.parentElement;
div.style.opacity = "0";
setTimeout(function(){ div.style.display = "none"; }, 600);
};
</script>
</body>
</html>