Files
aklive2d/apps/module/spine-ts/player/example/editor.html
2025-04-30 22:08:27 +08:00

26 lines
574 B
HTML
Executable File

<!doctype html>
<html>
<head>
<meta charset="utf-8">
<script src="./external/codemirror.js"></script>
<script src="../../build/spine-player.js"></script>
<link rel="stylesheet" href="../css/spine-player.css">
<link rel="stylesheet" href="./external/codemirror.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<style>
body {
background: gray;
margin: 0px;
}
</style>
<body>
<div id="editor" style="height: 700px;"></div>
</body>
<script>
new spine.SpinePlayerEditor(document.getElementById("editor"));
</script>
</body>
</html>