User:DPRKBEST/common.css: Difference between revisions – Wikipedia

From Wikipedia, the free encyclopedia

Content deleted Content added


 

 

Line 1: Line 1:

.spin {

. {

animation: spinAnim 3s linear infinite;

animation: infinite;

}

}

@keyframes spinAnim {

@keyframes {

from { transform: rotate(0deg); }

{ transform: (); }

to { transform: rotate(360deg); }

{ transform: (); }

100% { transform: scale(1); }

}

}


Latest revision as of 09:23, 26 January 2026

.pulse {
  animation: pulseAnim 2s ease-in-out infinite;
}

@keyframes pulseAnim {
  0% { transform: scale(1); }
  50% { transform: scale(1.15); }
  100% { transform: scale(1); }
}

Leave a Comment

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

Scroll to Top