mirror of
https://github.com/EsotericSoftware/spine-runtimes.git
synced 2026-02-23 18:21:23 +08:00
23 lines
864 B
HTML
23 lines
864 B
HTML
<html>
|
|
<script src="../../build/spine-webgl.js"></script>
|
|
<script src="https://code.jquery.com/jquery-3.1.0.min.js"></script>
|
|
<link rel="stylesheet" href="https://code.jquery.com/ui/1.12.0/themes/base/jquery-ui.css">
|
|
<script src="https://code.jquery.com/ui/1.12.0/jquery-ui.js"></script>
|
|
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/jqueryui-touch-punch/0.2.3/jquery.ui.touch-punch.min.js"></script>
|
|
<style>
|
|
* { margin: 0; padding: 0; }
|
|
body, html { height: 100% }
|
|
canvas { position: absolute; width: 100% ;height: 100%; }
|
|
</style>
|
|
<body>
|
|
<canvas id="ikdemo-canvas"></canvas>
|
|
<center>
|
|
<div>Display Bones</div><input id="ikdemo-drawbones" type="checkbox"><input></div>
|
|
</center>
|
|
<script src="utils.js"></script>
|
|
<script src="ikconstraint.js"></script>
|
|
<script>
|
|
ikConstraintDemo(spineDemos.setupRendering);
|
|
</script>
|
|
</body>
|
|
</html> |