I am trying to animate a circle going around using just anime.js. All is good for the rotation except for the easing. I do not want any custom easing so it rotates around in a seamless loop. How can I stop anime.js from adding a tween effect to the element?
Here is my JS
var wheel = anime({
targets: '#wheel',
duration: 10000,
rotate: 360,
direction: 'reverse',
loop: true,
});
You can specify an easing function. Maybe try easing: 'linear'?
Thank you!
Most helpful comment
You can specify an easing function. Maybe try
easing: 'linear'?