Skip to content

Instantly share code, notes, and snippets.

@MiguelDebruyne
Forked from darren131/gist:3410875
Created April 24, 2014 12:59
Show Gist options
  • Save MiguelDebruyne/11253740 to your computer and use it in GitHub Desktop.
Save MiguelDebruyne/11253740 to your computer and use it in GitHub Desktop.
@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