css - Spin or rotate an image on hover - Stack Overflow

PHOTO EMBED

Tue Jul 27 2021 01:35:38 GMT+0000 (Coordinated Universal Time)

Saved by @davidTheNerdy #css #hover #rotation

.flip-container {
  background: transparent;
  display: inline-block;
}

.flip-this {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}

.flip-container:hover .flip-this {
  transition: 0.9s;
  transform: rotateY(180deg);
}
content_copyCOPY

rotate element when hover

https://stackoverflow.com/questions/23695090/spin-or-rotate-an-image-on-hover