<!DOCTYPE html>
<html>
  <head>
    <title>Animations - 08 - Events/Pause</title>
    <script src="https://aframe.io/releases/1.7.0/aframe.min.js"></script>
  </head>
  <body>
    <a-scene cursor="rayOrigin: mouse" background="color:lightblue">
      <a-box
        position="-1 1.6 -3"
        color="#ff0000"
        animation="property: height; dur: 2000; from: 1; to: 2; startEvents: click; pauseEvents: mouseleave;"
      >
      </a-box>


    </a-scene>
  </body>
</html>