-
Notifications
You must be signed in to change notification settings - Fork 8
/
examples.html
69 lines (69 loc) · 1.62 KB
/
examples.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<style type="text/css">
html {
background-color: rgba(0, 0, 0, 0.1);
}
body {
margin: 5px auto;
margin-top: 15px;
margin-bottom: 50px;
width: 700px;
box-shadow: 0 0 20px rgba(0,0,0,0.5);
border-radius: 8px;
padding: 8px;
font-family: sans-serif;
background-color: white;
}
div {
display: inline-block;
}
img {
width: 200%;
image-rendering: pixelated;
image-rendering: crisp-edges;
}
hr {
border: none;
border-bottom: 1px dashed gray;
}
p {
margin: 5px;
}
</style>
</head>
<body>
<section>
Hint: Right click, Save Image As...
<hr>
<p>4x4</p>
<div><img src="etc/4x4.png"></div>
<hr>
<p>4x4plus</p>
<div><img src="etc/4x4plus.png"></div>
<hr>
<p>4x4plus</p>
<div><img src="etc/grass4x4plus.png"></div>
<hr>
<p>rpgmaker</p>
<div><img src="etc/grassrpgmaker.png"><br><img src="etc/mountainsrpgmaker.png"><br><img src="etc/waterrpgmaker.png"></div>
<hr>
<p>minitiles</p>
<div><img src="etc/mini.png"><br><img src="etc/minitiles-grass.png"></div>
<hr>
<p>minitiles (need to use margin offset)</p>
<div><img src="etc/marginexample.png"></div>
<hr>
<p>minitiles (32x32)</p>
<div><img src="etc/minitiles-32.png"></div>
<hr>
<p>5x3</p>
<div><img src="etc/5x3.png"></div>
<hr>
<p>5x2</p>
<div><img src="etc/5x2.png"></div>
</section>
</body>
</html>