Created
October 29, 2014 04:12
-
-
Save geckotang/469905d2a812083610dc to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ---- | |
// Sass (v3.3.14) | |
// Compass (v1.0.1) | |
// ---- | |
@mixin imgHoverEffect ($selector: '.selector') { | |
display: block; | |
background: #fff; | |
img{ | |
display: block; | |
transition: opacity 0; | |
#{$selector} & { | |
opacity: .5; | |
transition: opacity .2s; | |
} | |
} | |
} | |
.hoge { | |
@include imgHoverEffect($selector:'.ie8'); | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.hoge{display:block;background:#fff}.hoge img{display:block;transition:opacity 0}.ie8 .hoge img{opacity:.5;transition:opacity .2s} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment