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;
}
Back to top