graingert/WOW

Animate on hover

Opened this issue · 1 comments

Animations are revealing correctly on scroll, but can we make them animate on hover?

Would be good for buttons etc.

Have tried this (and similar variations) without luck:

.button-element:hover {
animation: jackInTheBox 2s;
}

@BenJackGill I've just tried this and it's working as expected for me, might be worth trying the prefix
.button-element:hover{
animation: jackInTheBox 2s;
-webkit-animation: jackInTheBox 2s;
}