forked from gesior/open-tibia-library
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtests.html
29 lines (28 loc) · 963 Bytes
/
tests.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
<html>
<head>
<title>OTEdit</title>
<meta http-equiv="content-type" content="text/html; charset=utf-8"/>
<style>
* {
image-rendering: pixelated;
image-rendering: -moz-crisp-edges;
image-rendering: crisp-edges;
}
</style>
</head>
<body>
Client Version: <input type="number" id="clientversion" value="860" /><br />
Sprite file: <input type="file" id="spr" /><br />
Dat file: <input type="file" id="dat" /><br />
Otb file: <input type="file" id="otb" /><br />
Item id: <input type="number" id="itemid" /><br />
<br />
Images generator progress: <span id="progressBar">Not running</span><br />
Item view:<br />
<canvas id="view" width="100" height="100" style="width:200px;height:200px"></canvas>
<script src="node_modules/jszip/dist/jszip.js"></script>
<script src="node_modules/gif.js/dist/gif.js"></script>
<script src="js/vendor.js"></script>
<script src="js/tests.js"></script>
</body>
</html>