Created an animated menu ( n°3 )
Created a menu that slides in from the side and has an opaque mask
To do this I used:
The React Springs libraryconst maskTransitions = useTransition(showMenu, {
from: { opacity: 0 },
enter: { opacity: 1 },
leave: { opacity: 0 },
...
oliveringle.hashnode.dev1 min read