-
Notifications
You must be signed in to change notification settings - Fork 4.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
position resets after adding an extra :hover animation #163
Comments
ok, i've solved my problem, could this be considered a bug? .nudge-up {
@include transition(transform .2s ease-in-out);
&:hover {
@include animation(0);
@include transform(translate(0px, -5px));
}
} should it automatically stop any animations after finished? or would this be an animate.css issue? |
Afaik it's a WOW 'issue' as it doesn't remove the animated class once the animation is complete. For now use your fix, I'll see if I can fix this and I'll do a pull request. Would you mind giving it a spin when I fixed it? 👍 |
ok thansk, and of course :) |
@modstudio please see my pull request #164. Should have fixed your issue. I tried removing the animated class after animation has ended in my browser first, after that hovering with a transform worked correctly so now I included it in WOW. |
Great. Works fine. It's funny becauses that error only shows up in Safari on my system.. Firefox seems figure it all out... thanks for the quick fix! |
I'm adding an extra :hover to my class,
however it fires off, but resets automatically when finshed.
(Example scss)
i wish for it to stick until i loose focus, when i remove my WOW js init, this is the desired behavour.
The text was updated successfully, but these errors were encountered: