Skip to content

Instantly share code, notes, and snippets.

@giiska
Created October 23, 2014 07:39
Show Gist options
  • Save giiska/fe0dbb1829846d9c5c0c to your computer and use it in GitHub Desktop.
Save giiska/fe0dbb1829846d9c5c0c to your computer and use it in GitHub Desktop.
文本渐变变色
.site__title {
color: #f35626;
background-image: -webkit-linear-gradient(92deg,#f35626,#feab3a);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
-webkit-animation: hue 60s infinite linear;
}
/*-----------------------------------*\
$ANIMATIONS
\*-----------------------------------*/
@-webkit-keyframes hue {
from {
-webkit-filter: hue-rotate(0deg);
}
to {
-webkit-filter: hue-rotate(-360deg);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment