Animate on hover
Opened this issue · 1 comments
BenJackGill commented
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;
}
lpnorton96 commented
@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;
}