scale animation
HTML
<img src="img/1.svg" alt="car1">
CSS
img:hover {
transform: scale(1);
}
img {
transform: scale(.9);
transition: transform 0.1s ease-in-out;
}
<img src="img/1.svg" alt="car1">
img:hover {
transform: scale(1);
}
img {
transform: scale(.9);
transition: transform 0.1s ease-in-out;
}