-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.html
59 lines (58 loc) · 1.33 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
<!DOCTYPE html>
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script>
<style>
.tex {
border: none;/*1px solid black;*/
display: inline-block;
float: left;
padding: 10px;
background: #ffcccc;
min-width: 350px;
min-height: 600px;
}
.green {
background: #ccffcc;
}
.yellow {
background: #ffffcc;
}
.last {
margin-bottom: 50px;
}
canvas { border: 1px solid black; }
form { min-height: 40px; }
body {
background: #ffffff;
padding: 25px;
font-family: Cantarell;
padding-top: 0px;
}
tr td {
height: 28px;
padding: 0;
margin: 0;
}
.sprite-sheet, canvas {
border:1px solid black;
}
</style>
</head>
<body>
<h2>EzSpriteSheet Demo (JavaScript + HTML5 Canvas)</h2>
<h3>Sprite art courtesy of <a href="https://twitter.com/DynoPunch">@DynoPunch</a></h3>
<canvas id="viewer-canvas"></canvas>
<br/>
Animation Name: <b id="animName"></b>
<br/>
<button onclick="button_prev()">Previous</button>
<button onclick="button_next()">Next</button>
<br/>
<button onclick="button_mirrorX()">X Mirror</button>
<button onclick="button_mirrorY()">Y Mirror</button>
<button onclick="button_grid()">Grid</button>
<h2>Sprite sheets</h2>
<script src="viewer.js"></script>
</body>
</html>