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
Per the documentation enter class is "CSS class applied to the entering element at the start of the enter transition, and removed the frame after. Defaults to "s-enter"/." So you really want to apply the transition properties on enterActiveClass and leaveActiveClass. The code above will transition your search component from opacity 0 to 1 on enter and leave.
enterToClass is where you want it to end up when it transitions in.
exitToClass is where you want it to end up when it transitions out.
Someone can correct me if I'm skipping over any important details or caveats here.
Hope this helps!
hi this is my democode
https://github.com/kulame/solid-demo/blob/master/src/Search.tsx
Why doesn't the window still not disappear after I clicked outside ?
In addition, the animation effect of Transition never appears after I click. Is it because I am using it incorrectly?
The text was updated successfully, but these errors were encountered: