onUpdate
Executes a function on every frames of a running timer at the specified frameRate
.
Accepts
A Function
whose first argument returns the timer itself
Default
noop
To change the default value globally, update the engine.defaults
object.
import { engine } from 'animejs';
engine.defaults.onUpdate = self => console.log(self.id);
onUpdate code example
import { createTimer, utils } from 'animejs';
const [ $updates ] = utils.$('.updates');
const [ $time ] = utils.$('.time');
let updates = 0;
createTimer({
onUpdate: self => {
$updates.innerHTML = ++updates;
$time.innerHTML = self.currentTime;
}
});
<div class="large row">
<div class="col">
<pre class="large log row">
<span class="label">updates</span>
<span class="updates value">0</span>
</pre>
</div>
<div class="col">
<pre class="large log row">
<span class="label">current time</span>
<span class="time value lcd">0</span>
</pre>
</div>
</div>