mirror of
https://github.com/EsotericSoftware/spine-runtimes.git
synced 2025-12-20 17:26:01 +08:00
28 lines
679 B
HTML
28 lines
679 B
HTML
<html>
|
|
<script src="../dist/iife/spine-webgl.js"></script>
|
|
<style>
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
</style>
|
|
|
|
<body>
|
|
<canvas
|
|
id="canvas"
|
|
style="position: absolute; width: 100%; height: 100%"
|
|
></canvas>
|
|
<div
|
|
style="position: absolute; top: 1em; left: 1em; z-index: 1; color: #ccc"
|
|
>
|
|
<label style="margin-right: 0.5em"> Animations</label>
|
|
<select id="animations"></select>
|
|
<label style="margin-right: 0.5em">Skins</label>
|
|
<select id="skins"></select>
|
|
<label>PMA</label>
|
|
<input type="checkbox" id="pma" checked />
|
|
</div>
|
|
<script src="drag-and-drop.js"></script>
|
|
</body>
|
|
</html>
|