Skip to content

Instantly share code, notes, and snippets.

@travismillerweb
Created August 9, 2014 22:47
Show Gist options
  • Save travismillerweb/86ac8eb53d8cb67251b0 to your computer and use it in GitHub Desktop.
Save travismillerweb/86ac8eb53d8cb67251b0 to your computer and use it in GitHub Desktop.
CSS - Pulse CSS3 Animation
@-webkit-keyframes pulse {
0% { color: $slp-green; }
100% { color: lighten($slp-green, 5%);}
}
@-moz-keyframes pulse {
0% { color: $slp-green; }
100% { color: lighten($slp-green, 5%);}
}
@-o-keyframes pulse {
0% { color: $slp-green; }
100% { color: lighten($slp-green, 5%);}
}
@keyframes pulse {
0% { color: $slp-green; }
100% { color: lighten($slp-green, 5%);}
}
/*
.class {
// -webkit-animation: pulse 3.5s infinite;
// -moz-animation: pulse 3.5s infinite;
// -o-animation: pulse 3.5s infinite;
// animation: pulse 3.5s infinite;
}
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment