Here are the CSS code for any image rotation infinitely

First, give the class name of image from advance CSS classes tab. And than click the center icon from the align self option.

And, than place the CSS code in Custom CSS tab.

.imageRotation{
	animation: rotateAnimation 10s infinite linear;
}

@keyframes rotateAnimation {
	0% {
		transform: rotate(0deg);
  }
  50% {
		transform: rotate(180deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

Leave a Reply

Your email address will not be published. Required fields are marked *