2018-11-15 14:39:28 +01:00

32 lines
705 B
HTML

<!doctype html>
<html>
<head>
<meta charset="utf-8">
<script src="../../build/spine-widget.js"></script>
<link rel="stylesheet" href="../css/spine-player.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<style>
body {
background: gray;
margin: 0px;
}
</style>
<body>
<div id="container" style="width: 480px; height: 320px;"></div>
</body>
<script>
new spine.SpinePlayer(document.getElementById("container"), {
jsonUrl: "assets/spineboy-pro.json",
atlasUrl: "assets/spineboy-pma.atlas",
premultipliedAlpha: true,
animations: ["walk", "jump"],
controlBones: ["root"],
backgroundColor: "#cccccc",
showControls: false,
});
</script>
</body>
</html>