All Projects → agrobbin → spritely

agrobbin / spritely

Licence: MIT license
Hooks into the Sprockets asset packaging system to allow you to easily generate sprite maps

Programming Languages

ruby
36898 projects - #4 most used programming language
CSS
56736 projects

Projects that are alternatives of or similar to spritely

Sprockets-PHP
Sprockets for PHP
Stars: ✭ 50 (+316.67%)
Mutual labels:  sprockets
sinatras-skeleton
Basic Sinatra Skeleton MVC CRUD App with Sprockets, Warden, ActiveRecord and PostgresQL
Stars: ✭ 13 (+8.33%)
Mutual labels:  sprockets
jquery-tmpl-rails
jQuery Templates for the Rails asset pipeline.
Stars: ✭ 46 (+283.33%)
Mutual labels:  sprockets
React Rails
Integrate React.js with Rails views and controllers, the asset pipeline, or webpacker.
Stars: ✭ 6,417 (+53375%)
Mutual labels:  sprockets
sprockets-standalone
Rack task library for using Sprockets standalone.
Stars: ✭ 15 (+25%)
Mutual labels:  sprockets
sprockets-bumble d
Sprockets plugin to transpile modern javascript using Babel, useful while migrating to ES6 modules
Stars: ✭ 32 (+166.67%)
Mutual labels:  sprockets

Spritely

Code Climate

Spritely hooks into the Sprockets asset packaging system to allow you to easily generate sprite maps.

See the list of releases for changes in each version.

How does it work?

Spritely provides a Sprockets preprocessor and transformer. It hooks into the processing stage of Sprockets compilation to generate a sprite image from a manifest file (in a very similar way to how application.css is processed). Several Sass functions are defined that are included into all other Sass scripting functions. If the image has not been generated (or is outdated), a request for the sprite will determine how to lay out the sprite, and then generate the image via ChunkyPNG, storing it in the Sprockets cache like all other compiled assets.

Installation

Add the gem to your gemfile

gem 'spritely'

Usage

Manifest file

Spritely takes advantage of Sprockets directives to define how a sprite should be generated. If you want to create a sprite map called application, create a app/assets/images/sprites/application.png.sprite manifest file. If you want just a default sprite map, leave the file blank. Otherwise, add any number of directives to the file (available directives are outlined below).

Stylesheet

If you aren't doing anything special, you can use a Spritely-provided Sass mixin:

#icon {
  @include spritely-image("application", "icon");
}

The compiled CSS should look something like this:

#icon {
  background-image: url(/assets/sprites/application.png);
  background-position: 0 25px;
  width: 20px;
  height: 20px;
}

Otherwise, you can use the Spritely Sass functions directly:

#icon {
  background: {
    image: spritely-url("application");
    position: spritely-position("application", "icon");
  }
}

The compiled CSS should look something like this:

#icon {
  background-image: url(/assets/sprites/application.png);
  background-position: 0 25px;
}

Busting the cache

Spritely utilizes Sprockets' depend_on and link_asset directives to listen to changes to existing images within a sprited folder. This, in addition to the cache being busted upon related stylesheet changes, takes care of 99 out of 100 cases of image changes.

Configuration directives

You can customize the configuration of your sprite map by using these global directives.

Directory

If you have sprite images that are stored in a different location than the default (app/assets/images/[sprite-name]), you can override the directory that Spritely looks for images to sprite. To do so when a sprite's images are stored in app/assets/images/foo/bar:

//= directory foo/bar

Sorting

You can sort images in the sprite based on name, width, height, or size:

//= sort width

To reverse the order, add a direction:

//= sort width desc

The default is name (asc is the default direction).

Layout

There are cases where you have images that need to be organized left-to-right rather than top-to-bottom. In those cases, you can configure the layout:

//= layout horizontal

The default value is vertical.

Image directives

There are a few different image-related sprite map directives available to you. All of these are available as both global and per-image directives. Per-image directives overwrite global directives. Global directives are set just like per-image ones are, except they don't include an image name.

Repetition

You can repeat the image horizontally. To do so for an image named arrow.png:

//= repeat arrow true

Note: While repetition can be done globally, you should exercise caution. If your globally-repeating sprite map has multiple oddly-shaped images (rather than small images like background tiles), your sprite map could get very large, and its generation/loading could severely slow down your computer. This is because, to correctly fill the space with whole copies of each image, Spritely has to determine the least common multiple of all repeated images. This means that for a sprite map with 4 repeating images with widths of [35px, 327px, 250px, 200px], your sprite will need to be 2289000px wide.

Positioning

When you want to use a sprited image on the opposite side of an element, it's useful to position that image to the right/bottom (depending on the direction) of the sprite map. To do so for an image named arrow.png:

//= opposite arrow true

To do it for all images in a sprite map:

//= opposite true

Spacing

There are sometimes cases where you want to add some extra spacing (or padding) above or below images in your sprite. To do so for an image named arrow.png:

//= spacing_before arrow 5
//= spacing_after arrow 10

This will add 5 pixels of spacing before arrow.png and 10 pixels of spacing after arrow.png within the sprite.

To do it for all images in a sprite map:

//= spacing_before 5
//= spacing_after 10

Tests

rspec spec

Spritely uses Appraisal to test against multiple versions of Rails. See their README for more information on how to run a particular suite.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].