duration

Defines the duration in milliseconds of the timer.
Setting 0 to a duration completes the timer instantly upon play.

Accepts

A Number equal to or greater than 0

Duration values higher than 1e12 are clamped internally to 1e12 (Or approximatively 32 years).

Default

Infinity

duration code example

import { createTimer, utils } from 'animejs';

const [ $time ] = utils.$('.time');

createTimer({
  duration: 2000,
  onUpdate: self => $time.innerHTML = self.currentTime
});
<div class="large centered row">
  <div class="half col">
    <pre class="large log row">
      <span class="label">current time</span>
      <span class="time value lcd">0</span>
    </pre>
  </div>
</div>