-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
188 lines (174 loc) · 5.54 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
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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>html5atari.com</title>
<link rel="stylesheet" href="http://fonts.googleapis.com/css?family=Syncopate:700|Press+Start+2P:400">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<header>
<h1>html5atari.com</h1>
</header>
<div class="main" role="main">
<div class="tv-wrapper">
<canvas id="television" width="160" height="222">
<p>Your browser does not support the canvas element!!</p>
</canvas>
</div>
<div class="controls-wrapper">
<fieldset class="controls">
<div class="left">
<div class="switch power">
<label>power</label>
<input type="range" id="power-switch" min="0" max="1" value="0" disabled>
<span class="top">on</span>
<span class="bottom">off</span>
</div>
<div class="switch tv-type">
<label>tv type</label>
<input type="range" id="color-switch" min="0" max="1" value="1" disabled>
<span class="top">color</span>
<span class="bottom">b•w</span>
</div>
<div class="switch difficulty">
<label>left difficulty</label>
<span class="top">a</span>
<span class="bottom">b</span>
<input type="range" id="left-difficulty" min="0" max="1" value="0" disabled>
</div>
</div>
<div class="right">
<div class="switch difficulty">
<label>right difficulty</label>
<span class="top">a</span>
<span class="bottom">b</span>
<input type="range" id="right-difficulty" min="0" max="1" value="0" disabled>
</div>
<div class="switch slide-back">
<label>game select</label>
<input type="range" id="select-switch" min="0" max="1" value="1" disabled>
</div>
<div class="switch slide-back">
<label>game reset</label>
<input type="range" id="reset-switch" min="0" max="1" value="1" disabled>
</div>
</div>
<h2>video computer system™</h2>
<div id="cart-slot" class="cart-slot">Drag 'n Drop your ROMs here</div>
</fieldset>
</div>
</div>
<div class="roms-panel">
<a id="rom-toggle-btn" class="toggle-button" title="Open/Close the ROMs Panel">ROMs</a>
<h3>Recently Loaded ROMs</h3>
<ol id="roms-list" class="hidden"></ol>
<p>No ROMs have been saved.</p>
<a id="browse-roms" class="browse-roms">Browse…</a>
</div>
<div class="controls-panel">
<a id="controls-toggle-btn" class="toggle-button" title="Open/Close the Controller Configuration Panel">Controls</a>
<h3>Controller Configuration</h3>
<div class="column">
<h4>Player 1</h4>
<dl>
<dt>Source</dt>
<dd id="p0-source"></dd>
<dt>Fire</dt>
<dd id="p0-fire"></dd>
<dt>Up</dt>
<dd id="p0-up"></dd>
<dt>Left</dt>
<dd id="p0-left"></dd>
<dt>Right</dt>
<dd id="p0-right"></dd>
<dt>Down</dt>
<dd id="p0-down"></dd>
</dl>
<a id="p0-edit-keymap" class="edit-keymap">Edit controls…</a>
</div>
<div class="column">
<h4>Player 2</h4>
<dl>
<dt>Source</dt>
<dd id="p1-source"></dd>
<dt>Fire</dt>
<dd id="p1-fire"></dd>
<dt>Up</dt>
<dd id="p1-up"></dd>
<dt>Left</dt>
<dd id="p1-left"></dd>
<dt>Right</dt>
<dd id="p1-right"></dd>
<dt>Down</dt>
<dd id="p1-down"></dd>
</dl>
<a id="p1-edit-keymap" class="edit-keymap">Edit controls…</a>
</div>
<div class="gamepads">
<h4>Gamepads Detected</h4>
<ol id="gamepad-list"></ol>
<p id="no-gamepads">No gamepads have been detected</p>
</div>
</div>
<footer>
<div class="content">
<img class="atari-logo" alt="Atari" src="images/atari-logo.png" width="76" height="85">
<img class="html5-logo" alt="HTML5" src="images/html5-logo.png" width="85" height="85">
<ul class="gh-btns">
<li>
<a href="https://twitter.com/share" class="twitter-share-button" data-via="JasonStoudt" data-count="none" data-hashtags="html5atari">Tweet</a>
</li>
<li class="follow">
<a href="https://twitter.com/JasonStoudt" class="twitter-follow-button" data-show-count="false" data-width="350">Follow @JasonStoudt</a>
</li>
<li>
<iframe src="http://markdotto.github.com/github-buttons/github-btn.html?user=jstoudt&repo=html5atari&type=fork"
allowtransparency="true" frameborder="0" scrolling="0" width="57px" height="20px"></iframe>
</li>
<li>
<iframe src="http://markdotto.github.com/github-buttons/github-btn.html?user=jstoudt&type=follow"
allowtransparency="true" frameborder="0" scrolling="0" width="132px" height="20px"></iframe>
</li>
</ul>
</div>
</footer>
<div id="wizard" class="overlay">
<button id="cancel-wizard">Cancel</button>
</div>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<script>
if (!window.jQuery) {
document.write('<script src="js/jquery-1.7.2.js"></' + 'script>');
}
</script>
<script src="//cdn.jquerytools.org/1.2.7/all/jquery.tools.min.js"></script>
<script src="js/utility.js"></script>
<script src="js/memory.js"></script>
<script src="js/rom.js"></script>
<script src="js/tia.js"></script>
<script src="js/riot.js"></script>
<script src="js/6507.js"></script>
<script src="js/script.js"></script>
<!--
<script>
window.onload = function() {
var iframe = document.createElement('iframe');
iframe.width = '1';
iframe.height = '1';
iframe.src = 'about:blank';
document.body.appendChild(iframe);
setTimeout(function() {
var innerWindow = iframe.contentWindow;
for (var attr in self) {
if (attr in innerWindow) {
continue;
}
console.log('Added ' + attr);
}
}, 3000);
};
</script>
-->
</body>
</html>