3DトランスフォームのY軸回転

.box {
  height: 130px;
  margin-inline: auto;
  width: 130px;
}
.box img {
  height: auto;
  width: 100%;
  animation: rotate_y_anime 2s infinite;
}

@keyframes rotate_y_anime {
    0% {
        transform:rotateY(0deg);
    }
    20% {
        transform:rotateY(180deg);
    }
    100% {
        transform:rotateY(360deg);
    }
}

MORE POSTS