onLoop V4 JS
Executes a function every time an animation iteration (loop) completes.
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.onLoop = self => console.log(self.id);
onLoop code example
import { animate, utils } from 'animejs';
const [ $value ] = utils.$('.value');
let loops = 0;
const animation = animate('.circle', {
x: '16rem',
loopDelay: 1500,
loop: true,
alternate: true,
onLoop: self => $value.textContent = ++loops
});
<div class="large row">
<div class="circle"></div>
<pre class="large log row">
<span class="label">loops</span>
<span class="value">0</span>
</pre>
</div>