fps
Controls the global frame rate at which animations are updated and rendered.
Adjusting the frame rate can help optimize performance on lower-end devices or when running many complex animations simultaneously. However, it may affect the perceived smoothness of animations.
engine.fps = 30; // Set all animations to update at 30 fps
Accepts
A Number
greater than 0
Default
120
fps code example
import { engine, animate, utils } from 'animejs';
const [ $container ] = utils.$('.container');
const [ $range ] = utils.$('.range');
for (let i = 0; i < 150; i++) {
const $particle = document.createElement('div');
$particle.classList.add('particle');
$container.appendChild($particle);
animate($particle, {
x: utils.random(-10, 10, 2) + 'rem',
y: utils.random(-3, 3, 2) + 'rem',
scale: [{ from: 0, to: 1 }, { to: 0 }],
delay: utils.random(0, 1000),
loop: true,
});
}
function onInput() {
engine.fps = this.value;
}
$range.addEventListener('input', onInput);
<div class="large row container"></div>
<div class="medium row">
<fieldset class="controls">
<input type="range" min=0 max=240 value=60 step=1 class="range" />
</fieldset>
</div>