Image CSS Hover Zoom et tournonne

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