28 lines
750 B
HTML
28 lines
750 B
HTML
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<meta charset="utf-8">
|
||
|
<title>skinpreview3d.js example using jquery</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>
|
||
|
$(() => {
|
||
|
$("#skin_container").skinPreview3d({
|
||
|
skinUrl: 'img/hatsune_miku.png',
|
||
|
capeUrl: 'img/mojang_cape.png',
|
||
|
slim: true,
|
||
|
// disableControl: true, // This disables the mouse control feature
|
||
|
width: 600,
|
||
|
height: 600
|
||
|
});
|
||
|
});
|
||
|
</script>
|
||
|
</body>
|
||
|
</html>
|