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
Currently when transition between elements, the next element will briefly transition in underneath (block level) while the previous element is being removed.
i would assume that with mode out-in, the element going out will be completely removed from the page before the new element comes in,, however they seem to be doing this simultaneously , with the new element underneath the first one, and then jerking upwards, when the first element is being removed. removing the mode, does not seem to have any effect, so it makes me think the mode="out-in" isn't being applied here? any suggestions?
The text was updated successfully, but these errors were encountered:
The mode property only applies to the XyzTransition component, not the XyzTransitionGroup component. Are you animating multiple elements or just swapping one element for another? If just swapping one for the other you can use the XyzTransition component instead and then use mode="out-in".
Using vue3@latest with latest animxyz
I am having trouble with the mode="out-in"
Currently when transition between elements, the next element will briefly transition in underneath (block level) while the previous element is being removed.
Here is what I have.
i would assume that with mode out-in, the element going out will be completely removed from the page before the new element comes in,, however they seem to be doing this simultaneously , with the new element underneath the first one, and then jerking upwards, when the first element is being removed. removing the mode, does not seem to have any effect, so it makes me think the mode="out-in" isn't being applied here? any suggestions?
The text was updated successfully, but these errors were encountered: