-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
demo.html
46 lines (45 loc) · 1.3 KB
/
demo.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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<script src="excanvas.js" type="text/javascript"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js" type="text/javascript"></script>
<script src="jquery.minecraftskin.js" type="text/javascript"></script>
<script type="text/javascript">
$(function() {
$(".mc-skin").minecraftSkin();
});
</script>
<title>Minecraft HTML5 Canvas Skin Viewer</title>
</head>
<style>
* {
margin:0;
padding:0;
}
div {
display:inline-block;
}
.minecraft_head .head {
display:none;
}
.minecraft_head:hover .hat {
display:none;
}
.minecraft_head:hover .head {
display:inline-block;
}
.scratch {
display:none;
}
</style>
<body>
<span class="mc-skin" data-minecraft-username="invalidSkinHere"></span>
<span class="mc-skin" data-minecraft-username="confuserr" data-minecraft-scale="10"></span>
<br />
<br />
<br />
<span class="mc-skin" data-minecraft-username="04stewe1" data-minecraft-draw="head"></span>
<span class="mc-skin" data-minecraft-username="confuserr" data-minecraft-scale="10" data-minecraft-draw="head"></span>
</body>
</html>