Difference between revisions of "User:Donald/common.css"

From Tycoon Gaming
(Created page with "span { animation: textAnimate 5s linear infinite alternate; } @keyframes textAnimate { from { filter: hue-rotate(0deg); background-position-x: 0%; } to {...")
 
m
Line 1: Line 1:
span {
+
.animate {
 
animation: textAnimate 5s linear infinite alternate;
 
animation: textAnimate 5s linear infinite alternate;
 
}
 
}

Revision as of 18:21, 14 April 2022

.animate {
animation: textAnimate 5s linear infinite alternate;
}

@keyframes textAnimate {
  from {
    filter: hue-rotate(0deg);
    background-position-x: 0%;
    
  }
  to {
    filter: hue-rotate(360deg);
    background-position-x: 600vw;
    
  }
}