restart()
Resets all properties and set the currentTime
of a timer to 0
.
If the autoplay
is set to true
, the timer plays automatically.
Returns
The timer itself
Can be chained with other timer methods.
restart() code example
import { createTimer, utils } from 'animejs';
const [ $restartButton ] = utils.$('.restart');
const [ $time ] = utils.$('.time');
const timer = createTimer({
onUpdate: self => $time.innerHTML = self.currentTime
});
const restartTimer = () => timer.restart();
$restartButton.addEventListener('click', restartTimer);
<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>
<div class="medium row">
<fieldset class="controls">
<button class="button restart">Restart</button>
</fieldset>
</div>