<!DOCTYPE html>
<html>
<head>
<title>3D Models - 04 - glTF animated</title>
<script src="https://aframe.io/releases/1.7.0/aframe.min.js"></script>
<script src="https://cdn.jsdelivr.net/gh/c-frame/aframe-extras@7.4.0/dist/aframe-extras.min.js"></script>
</head>
<body>
<a-scene >
<a-assets>
<a-asset-item
id="dog"
src="https://cdn.glitch.global/80978ab7-9db6-45ae-bc43-4fab16bdbb6e/animated_dog_shiba_inu.glb?v=1748833592222"
>
</a-asset-item>
</a-assets>
<a-plane color="brown" width="15" height="15" rotation="-90 0 0" ></a-plane>
<a-gltf-model
id="mymodel"
position="0 0 -3"
scale="0.01 0.01 0.01"
src="#dog"
animation-mixer="clip: 0|rollover_0"
></a-gltf-model>
</a-scene>
</body>
</html>