For using mouse into one element we use the :hover CSS attribute. How about for mouse out of the element?
:hover
I added a transition effect on the element to
I think that I've found the solution.
.class :hover { /*add your animation of mouse enter*/ } .class { /* no need for not(hover) or something else. Just write your animation here and it will work when mouse out */ }
Just try it... :)