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

From Aurora Information Uplink
Jump to navigation Jump to search
m
m
Line 8: Line 8:
@keyframes a2 {
@keyframes a2 {
   0%  {transform: rotate(0deg);}
   0%  {transform: rotate(0deg);}
   50%  {transform: rotate(180deg);}
   50%  {transform: rotate(180deg) scale(2.0);}
   100% {transform: rotate(360deg);}
   100% {transform: rotate(360deg);}
}
}
Line 14: Line 14:
@keyframes a3 {
@keyframes a3 {
   0%  {transform: rotate(360deg);}
   0%  {transform: rotate(360deg);}
   50%  {transform: rotate(180deg);}
   50%  {transform: rotate(180deg)(scale(0.5);}
   100% {transform: rotate(0deg);}
   100% {transform: rotate(0deg);}
}
}
.die {
.die {
   position: relative;
   position: relative;
   animation: a1 2s linear 2s infinite normal;
   animation: a3 2s linear 2s infinite normal;
}
}


.eid {
.eid {
   animation: a2 2s linear 2s infinite normal;
   animation: a2 2s linear 2s infinite normal;
}
.name {
  animation: a3 2s linear 2s infinite normal;
}
}

Revision as of 02:12, 14 July 2019

@keyframes a1 {
  0%   {bottom: 2px;}
  25%  {bottom: 5px;}
  50%  {bottom: 10px;}
  75%  {bottom: 5px;}
  100% {bottom: 2px;}
}
@keyframes a2 {
  0%   {transform: rotate(0deg);}
  50%  {transform: rotate(180deg) scale(2.0);}
  100% {transform: rotate(360deg);}
}

@keyframes a3 {
  0%   {transform: rotate(360deg);}
  50%  {transform: rotate(180deg)(scale(0.5);}
  100% {transform: rotate(0deg);}
}
.die {
  position: relative;
  animation: a3 2s linear 2s infinite normal;
}

.eid {
  animation: a2 2s linear 2s infinite normal;
}