Hi there,
I’m trying to achieve a simple growth animation on my site.
Here’s the page, the animation is for the five services at the top of the page under the slider
https://mosontelecom.ethermedia.hu/
Here’s the CSS:
@-webkit-keyframes myanimation {
0%{
}
100%{
transform: rotate(xx) scale(1.1);
}
}
@keyframes myanimation {
0%{
}
100%{
transform: rotate(xx) scale(1.1);
}
}
.csomag-hover:hover {border-color: #4CC200; box-shadow: 0px 2px 4px #4CC200; animation: myanimation 1s 1 0s linear;}
.csomag-hover {animation: myanimation 1s 1 0s linear;}
I can’t figure out why it won’t work. Can you help?