forked from minghai/MarioSequencer
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
42 lines (41 loc) · 1.14 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
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Mario Sequencer</title>
<link rel="stylesheet" href="gh-fork-ribbon.css">
<style>
.game {
margin:0; padding:0; border:0;
left:0; top:0;
}
.right-bottom .github-fork-ribbon {
background-color: #090;
}
</style>
</head>
<body>
<select id="magnify">
<option value="1">1x1</option>
<option value="2" selected>2x2</option>
<option value="3">3x3</option>
</select>
<div id="console"
style="position: relative; margin:0px auto; padding:0px; border:0px;">
<canvas id="layer1" class="game"
style="position: static; z-index: 0; opacity:1"></canvas>
<canvas id="layer2" class="game"
style="position: absolute; z-index: 1;"></canvas>
<image id="spinner" src="image/loading_transparent_.gif" width="46px"
style="position: absolute; top:35%; left:47%; z-index:4;" />
</div>
<center>
<button onclick="download()">Download</button>
</center>
<script src="shared.js"></script>
<div class="github-fork-ribbon-wrapper right-bottom">
<div class="github-fork-ribbon">
<a href="https://github.com/minghai/MarioSequencer">Fork me on GitHub</a>
</div>
</div>
</body>
</html>