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

From Aurora Information Uplink
Jump to navigation Jump to search
m
m
Line 12: Line 12:
   animation-play-state: running;
   animation-play-state: running;
}
}
body{ font-family: "Comic Sans MS"; }

Revision as of 21:49, 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;
}

body{ font-family: "Comic Sans MS"; }