Skip to content

Instantly share code, notes, and snippets.

@sayar
Created March 13, 2015 19:00
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save sayar/962d49d1ab67a68becd0 to your computer and use it in GitHub Desktop.
Save sayar/962d49d1ab67a68becd0 to your computer and use it in GitHub Desktop.
Standard CSS3 Filters Example
img {
filter: grayscale(50%) opacity(10%);
}
@keyframes filter-animation {
0% {
filter: opacity(0);
}
50% {
filter: opacity(100%);
}
100% {
filter: opacity(0);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment