26 lines
631 B
HTML
26 lines
631 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>SkinPreview3D</title>
|
|
</head>
|
|
<body>
|
|
|
|
<div id="skin_container"></div>
|
|
|
|
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
|
|
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/three.js/87/three.min.js"></script>
|
|
<script type="text/javascript" src="js/skinpreview3d.js"></script>
|
|
<script>
|
|
$(function() {
|
|
$("#skin_container").skinPreview3D({
|
|
skinUrl: 'img/Dinnerbone.png',
|
|
capeUrl: 'img/cape.png',
|
|
width: 600,
|
|
height: 600
|
|
});
|
|
});
|
|
</script>
|
|
</body>
|
|
</html>
|