Skip to content

Instantly share code, notes, and snippets.

@lagden
Created September 14, 2012 18:02
Show Gist options
  • Save lagden/3723582 to your computer and use it in GitHub Desktop.
Save lagden/3723582 to your computer and use it in GitHub Desktop.
<img src="http://farm4.static.flickr.com/3647/3320066629_c26343104f.jpg" alt="yeahh">
@import "compass";
img{
@include transition-property(all);
@include transition-duration(.5s);
@include transition-timing-function(ease-in);
-webkit-filter: grayscale(100%);
-moz-filter: grayscale(100%);
-ms-filter: grayscale(100%);
-o-filter: grayscale(100%);
filter: grayscale(100%);
filter: Gray();
&:hover{
-webkit-filter: grayscale(0%);
-moz-filter: grayscale(0%);
-ms-filter: grayscale(0%);
-o-filter: grayscale(0%);
filter: grayscale(0%);
filter: none;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment