Guest User

Untitled

a guest
Mar 24th, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.71 KB | None | 0 0
  1. /* Safari 4.0 - 8.0 */
  2. @-webkit-keyframes changecolor {
  3. from {color: linear-gradient(90deg, #18647c 0%, #18647c 30%, #266d82 50%, #3ebee0 80%, #18647c 100%);}
  4. to {color: red;}
  5. }
  6. /* Standard syntax */
  7. @keyframes changecolor {
  8. color {color: linear-gradient(90deg, #18647c 0%, #18647c 30%, #266d82 50%, #3ebee0 80%, #18647c 100%);}
  9. to {color: red;}
  10. }
  11.  
  12. .scroll span {
  13. color: linear-gradient(90deg, #18647c 0%, #18647c 30%, #266d82 50%, #3ebee0 80%, #18647c 100%);
  14. background-size: 200% 100%;
  15. background-position: 0% 50%;
  16. -webkit-animation-name: changecolor; /* Safari 4.0 - 8.0 */
  17. -webkit-animation-duration: 4s; /* Safari 4.0 - 8.0 */
  18. animation-name: changecolor;
  19. animation-duration: 4s;
  20.  
  21. }
Add Comment
Please, Sign In to add comment