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

From Aurora Information Uplink
Jump to navigation Jump to search
m
m
Line 1: Line 1:
#bodyContent {  
@keyframes a1 {
    text-indent: -9999px;
  0%  {bottom: 2px;}
    background-image: url("https://cdn.discordapp.com/attachments/165878705221140481/599738459707408425/image0-2.gif");
  25%  {bottom: 10px;}
    background-color: deeppink
  50%  {bottom: 30px;}
  100% {bottom: 10px;}
}
 
@keyframes a2 {
  0%  {left: 2px;}
  25%  {left: 10px;}
  50%  {left: 30px;}
  100% {left: 10px;}
}
 
.die {
  animation: a1 infinite linear 0s infinite normal
}
 
.eid {
  animation: a2 infinite linear 0s infinite normal
}
}

Revision as of 00:38, 14 July 2019

@keyframes a1 {
  0%   {bottom: 2px;}
  25%  {bottom: 10px;}
  50%  {bottom: 30px;}
  100% {bottom: 10px;}
}

@keyframes a2 {
  0%   {left: 2px;}
  25%  {left: 10px;}
  50%  {left: 30px;}
  100% {left: 10px;}
}

.die {
   animation: a1 infinite linear 0s infinite normal
}

.eid {
   animation: a2 infinite linear 0s infinite normal
}