User:VTCobaltblood/Test.css: Difference between revisions

From Aurora Information Uplink
Jump to navigation Jump to search
No edit summary
mNo edit summary
Line 3: Line 3:


.tup{
.tup{
   animation: a 10s linear 1;
  width: 1000px;
  height: 100px;
   animation: a 10s linear;
   animation-play-state: paused;
   animation-play-state: paused;
}
}

Revision as of 19:47, 15 July 2019

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

.tup{
   width: 1000px;
   height: 100px;
   animation: a 10s linear;
   animation-play-state: paused;
}

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