Hi there,
Easier to explain with a short video what I would like to do:
And here’s the CSS I tried to add to achieve this effect.
/* ANIMATIONS */
@keyframes Product_loop_image_hover {
0% {
}
100% {
transform: rotate(xx) scale(1.05);
}
}
.entry-featured img:hover {
animation: Product_loop_image_hover 3s infinite 0s ease-in-out;
}
What am I doing wrong?