forked from leonsbuddydave/F3Hacking
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
56 lines (52 loc) · 2.37 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
<!DOCTYPE html>
<head>
<title>Fallout 3 Terminal Hacking - Mitchell Thompson</title>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js"></script>
<script type="text/javascript" src="terminal.js"></script>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-31586992-1']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</head>
<body>
<style type="text/css">
@import "styles.css";
</style>
<div id="terminal-background">
<img id="terminal-background-off" src="graphics/monitorborder-off.png" />
</div>
<div id="terminal">
</div>
<div id="powerbutton" onclick="TogglePower()"></div>
<div id="pleasedontsueme">Bethesda? Zenimax? Please don't sue me, <a href="mailto:[email protected]">ask nicely</a>.</div>
<div id="social"><a href="https://twitter.com/share" class="twitter-share-button" data-text="Fallout Hacking Mini-Game Browser Port">Tweet</a>
<script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0];if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src="//platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");</script>
</div>
<div id="otheraudiostuff">
<audio id="poweron" src="sound/poweron.ogg"></audio>
<audio id="poweroff" src="sound/poweroff.ogg"></audio>
<audio id="passbad" src="sound/passbad.ogg"></audio>
<audio id="passgood" src="sound/passgood.ogg"></audio>
</div>
<div id="audiostuff">
<audio id="enter" src="sound/kenter.ogg"></audio>
<audio id="k1" src="sound/k1.ogg"></audio>
<audio id="k2" src="sound/k2.ogg"></audio>
<audio id="k3" src="sound/k3.ogg"></audio>
<audio id="k4" src="sound/k4.ogg"></audio>
<audio id="k5" src="sound/k5.ogg"></audio>
<audio id="k6" src="sound/k6.ogg"></audio>
<audio id="k7" src="sound/k7.ogg"></audio>
<audio id="k8" src="sound/k8.ogg"></audio>
<audio id="k9" src="sound/k9.ogg"></audio>
<audio id="k10" src="sound/k10.ogg"></audio>
<audio id="k11" src="sound/k11.ogg"></audio>
</div>
</body>
</html>