onUpdate JS
Executes a function on every frames of a running animation at the specified frameRate
.
Accepts
A Function
whose first argument returns the animation 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 { animate, utils } from 'animejs';
const [ $value ] = utils.$('.value');
let updates = 0;
const animation = animate('.circle', {
x: '16rem',
loopDelay: 1500,
loop: true,
alternate: true,
onUpdate: self => $value.textContent = ++updates
});
<div class="large row">
<div class="circle"></div>
<pre class="large log row">
<span class="label">updates</span>
<span class="value">0</span>
</pre>
</div>