-
-
Notifications
You must be signed in to change notification settings - Fork 19
/
index.html
64 lines (59 loc) · 2.85 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
<html>
<head>
<title>TV Simulator '99</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0"/>
<meta name="author" content="Zach Hall"/>
<meta name="description" content="Simulator of a hotel television from the 1990's."/>
<meta property="og:title" content="TV Simulator '99"/>
<meta property="og:type" content="website"/>
<meta property="og:url" content="https://zshall.github.io/program-guide/"/>
<meta property="og:image" content="https://zshall.github.io/program-guide/img/tvsim-ogimg.png"/>
<link href="css/site.css" rel="stylesheet" />
<link rel='shortcut icon' type='image/x-icon' href='favicon.ico' />
</head>
<body>
<div class="tv">
<a id="about-button"> </a>
<a id="tv-mute"> </a>
<img class="tv-mask" src="img/tv.png" />
<div class="screen">
<div class="tv-messages">
<div id="tvm-top-right"></div>
<div id="tvm-bottom-left"></div>
</div>
<div class="current-channel"></div>
</div>
</div>
<div class="about">
<p class="yellow">TV Simulator '99</p>
<p><a href="https://github.com/zshall/program-guide">Version 0.6.1</a></p>
<p>Zach Hall, 2017</p>
<p class="yellow">Credits</p>
<p><a href="http://ariweinstein.com/prevue/index.php">Prevue reference software, information, and Curday.dat</a> by <a href="http://ariweinstein.com/">AriX</a>, other Prevue Guide forum members.</p>
<p><a href="http://ariweinstein.com/prevue/viewtopic.php?f=2&t=449">New Prevue Fonts</a> by <a href="http://rudyv.io/">rudyvalencia</a></p>
<p><a href="https://www.youtube.com/watch?v=9NSVU4Gv_wA">90's Commercials Vol. 244</a> by <a href="https://www.youtube.com/channel/UCsoiFs_IAf8uMoXd7vj3_Gg">80sCommercialVault</a></p>
</div>
<!-- Load JS libraries -->
<script src="lib/jquery-3.2.1.min.js"></script>
<script src="lib/moment.js"></script>
<script src="lib/bettermarquee.js"></script>
<script src="js/helpers/helpers.js"></script>
<script src="js/helpers/youtube-ctrl.js"></script>
<script src="js/helpers/channel.js"></script>
<!-- Load application JS -->
<script src="channels/012/script.js"></script>
<script src="js/core/tv.js"></script>
<script>
var tv = new TV();
tv.startUp();
</script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-98274592-1', 'auto');
ga('send', 'pageview');
</script>
</body>
</html>