Compass Spriter
A responsive sprite sheet generator plugin for Compass.
There are many sprite generators out there, and even one built in to compass. However, none of these sprite sheet generators can be applied to responsively sized elements.
If you have an element with a percentage width or height, you will need a percentage background-position, which this plugin provides.
##Installation
$ gem install compass-spriter
##Usage
When creating a new project for Compass
$ compass create <my_project> -r compass-spriter --using compass-spriter
If using an existing project, edit your config.rb and add this line:
require 'compass-spriter'
To use the responsive sprite mixin
@import "spriter";
div#menu-icon{
@include spriter(menu-icon);
}
##Options
You can configure Spriter's settings (defaults shown below).
If you want to override these settings, you must set the variables before the first use of @include spriter();
$spriter-images: "sprites/*.png";
$spriter-spacing: 2px;
##Browser support
Browser support very generally good. Any browser that supports percentage-positioned background images should be fine.
##Contributions
Pull requests or the opening of issues are always welcome