User:VTCobaltblood/Test.css: Difference between revisions

From Aurora Information Uplink
Jump to navigation Jump to search
m ?????
No edit summary
Line 1: Line 1:
p.bulk{ transform: rotate(60deg) }
@keyframes a {
  to: { transform: scale(300, 300); }
 
.tup{
  animation: a 10s linear 1;
  animation-play-state: paused;
}
 
.tup:hover{
  animation-play-state: running;
}

Revision as of 15:56, 15 July 2019

@keyframes a {
   to: { transform: scale(300, 300); }

.tup{
   animation: a 10s linear 1;
   animation-play-state: paused;
}

.tup:hover{
   animation-play-state: running;
}