We've created a player that can easily be embedded on any web page to show your Spine animations! Check out this blog post for more info:
Blog: Spine Web Player released
Read the documentation here:
Spine Web Player
You can't use the Spine Web Player on the forum yet, but you will be able to in the future!
To show how it works, the HTML and JavaScript for the player is:
<!
---
Include the JavaScript and CSS files
---
<script src="https://esotericsoftware.com/files/spine-player/3.7/spine-player.js"></script>
<link rel="stylesheet" href="https://esotericsoftware.com/files/spine-player/3.7/spine-player.css">
<!
---
Create a container element
---
<div id="player"></div>
<!
---
Create the player with your settings and container ID
---
<script>
new spine.SpinePlayer("player", {
jsonUrl: "https://esotericsoftware.com/files/examples/raptor/export/raptor-pro.json",
atlasUrl: "https://esotericsoftware.com/files/examples/raptor/export/raptor-pma.atlas",
animation: "walk",
backgroundColor: "#cccccc",
});
</script>