<!DOCTYPE html>
<html>
  <head>
    <title>Animations - 06 - Multiple</title>
    <script src="https://aframe.io/releases/1.2.0/aframe.min.js"></script>
    <script src="../js/livecode.js"></script>
  </head>
  <body>
    <a-scene background="color:lightblue">
      <a-box
             side="double"
        position="-1 1.6 -2"
        scale="0.5 0.5 0.5"
        color="#ff0000"
        animation__height="property: height; from: 1; to: 2; dur: 1000; loop: 1"
        animation__rotation="property: rotation; from: 0 0 0; to: 360 0 0; dur: 1000; loop: true"
        animation__color="property: color; from: #ff0000; to: #0000ff; dur: 1000; loop: true; dir: alternate"
      >
      </a-box>
    </a-scene>
  </body>
</html>