You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I want to reaveal und conceal a List via animejs. This list is searchable. so as a user, I want to conceal the list so fast as possible to reveal the new list result, that I searched for and dont want to wait the regular animation (reveal) speed.
So I want to speed up the duration during the reversal playback.
Example:
varanimation=anime({targets: '.reverse-anim-demo .el',translateX: 270,duration: 1000,loop: false,delay: function(el,i){returni*200;},easing: 'easeInOutSine'});animation.play;// my approach:animation.duration=10;animation.reverse;animation.play;
The text was updated successfully, but these errors were encountered:
I want to reaveal und conceal a List via animejs. This list is searchable. so as a user, I want to conceal the list so fast as possible to reveal the new list result, that I searched for and dont want to wait the regular animation (reveal) speed.
So I want to speed up the duration during the reversal playback.
Example:
The text was updated successfully, but these errors were encountered: