CSS Image Hover Zoom dan Rotate

img {
  transition: transform .7s ease-in-out;
}
img:hover {
  transform: rotate(360deg);
}
MitchAloha