Difference between revisions of "User:VTCobaltblood/Test.css"

From Aurora Information Uplink
Jump to navigation Jump to search
m (?????)
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 17: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;
}