anime js speed instead of duration code example
Example: animejs reduce the speed
anime({
targets: '#thread',
width: '100%', // -> from '28px' to '100%',
easing: 'easeInOutQuad',
direction: 'alternate',
duration: 500,
loop: true
});
anime({
targets: '#thread',
width: '100%', // -> from '28px' to '100%',
easing: 'easeInOutQuad',
direction: 'alternate',
duration: 500,
loop: true
});