Skip to content
This repository has been archived by the owner on Oct 19, 2018. It is now read-only.

sblackstone/auto_sprite

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Deprecated

This gem was written a long time ago during the Rails 2 era - way before Sprockets came on to the scene.

I would suggest using the awesome spite-factory gem as a replacement..

github.com/jakesgordon/sprite-factory

AutoSprite 1.1.3

An easy, automated CSS image sprite creator. Ruby 1.9 and Rails 3.0 Compatible!

Suppose you have 10 images on your homepage. Rather than downloading 10 seperate images one at a time, 1 image is downloaded and we use CSS to show different parts of that image when we need to. This speeds up your page load time. It can be hard to manage this manually since you need to keep appending images to a sprite file and updating your css file with the correct offsets, etc. Auto Sprite lets you get back to more important things.

Install

  1. Install auto_sprite and RMagick.

    gem install RMagick auto_sprite
    
  2. Edit your environement.rb add config.gem “auto_sprite”

Usage

  1. Include the stylesheet in your layout:

    <%= stylesheet_link_tag "auto_sprite" %>`
  2. Create a directory called sprites in your images directory (e.g. RAILS_ROOT/public/images/sprites)

  3. Put the images you want to link to in your public/images/sprites directory.

  4. Use your images like you normally would:

    <%= image_tag 'sprites/icon1.jpg' %>
    
    A :title can also be passed so your icons have tooltips:
    
    <%= image_tag "sprites/stuff.png", :title => "I like Ice Cream" %>
  5. Reload after adding any new images to sprites/ and enjoy your now faster rendering website.

Notes

  • Animated images are not supported.

  • Any image format supported by RMagick should work.

  • Images of mixed sizes are not a problem.

  • Should auto_sprite be removed, your application still works!

Details

When rails starts, it checks whether or not the CSS or Sprite file is stale or missing.

If so, it will create:

RAILS_ROOT/public/stylesheets/auto_sprite.css
RAILS_ROOT/public/images/auto_sprite.png

The image tag will automatically generate a div tag for any images located in the sprite directory.

<span class="_as_logo_png"></span> instead of <img src="/images/sprites/logo.png" />

Here is an exmplmple of the stylehseet that would be generated if you had two files face3.png and face4.png

._as_face3_png {
   background-position:0 0px;
   height:16px;
   width:16px;
}

._as_face4_png{
  background-position:0 -16px;
  height:16px;
  width:16px;
}

._as_face3_png, 
._as_face3_png {
  display:inline-block;
  background-image:url('/images/auto_sprite.png');
  background-repeat:no-repeat; 
}

Contact

Author

Stephen Blackstone (sblackstone@gmail.com)

Website

github.com/sblackstone/auto_sprite

Copyright © 2010 Stephen Blackstone, released under the MIT license

About

CSS Sprites can get you down, don't let them. This gem automatically creates the CSS, Sprite and HTML tags so you don't have to

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages