mirror of
https://github.com/EsotericSoftware/spine-runtimes.git
synced 2025-12-21 09:46:02 +08:00
25 lines
665 B
HTML
25 lines
665 B
HTML
<html>
|
|
<link rel="stylesheet" href="demos.css">
|
|
<script src="../../build/spine-webgl.js"></script>
|
|
<script src="https://code.jquery.com/jquery-3.1.0.min.js"></script>
|
|
<script src="utils.js"></script>
|
|
<script src="transformconstraint.js"></script>
|
|
<body>
|
|
|
|
<canvas id="transformdemo-canvas"></canvas>
|
|
<center>
|
|
<div style="position: fixed; top: 0; width: 100%">
|
|
Rotation offset
|
|
<div id="transformdemo-rotationoffset" class="slider filled"></div>
|
|
Translation mix
|
|
<div id="transformdemo-translationmix" class="slider filled"></div>
|
|
</div>
|
|
</center>
|
|
|
|
<script>
|
|
spineDemos.loadSliders();
|
|
transformConstraintDemo(spineDemos.setupRendering);
|
|
</script>
|
|
|
|
</body>
|
|
</html> |