Created
August 21, 2012 02:30
-
-
Save darren131/3410875 to your computer and use it in GitHub Desktop.
resize sprites in Compass
This file contains 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
@mixin resize-sprite($map, $sprite, $percent) { | |
$spritePath: sprite-path($map); | |
$spriteWidth: image-width($spritePath); | |
$spriteHeight: image-height($spritePath); | |
$width: image-width(sprite-file($map, $sprite)); | |
$height: image-height(sprite-file($map, $sprite)); | |
@include background-size(ceil($spriteWidth * ($percent/100)) ceil($spriteHeight * ($percent/100))); | |
width: ceil($width*($percent/100)); | |
height: ceil($height*($percent/100)); | |
background-position: 0 floor(nth(sprite-position($map, $sprite), 2) * ($percent/100) ); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
how can we rewrite the function to use px instead of % : I need my icon do a specific px size, not a percent of the original
@mixin resize-sprite($map, $sprite, $px_size)
like that