ios-checkboxes

This project allows you to easily use iPhone style checkboxes in a Rails 3.1 application.

Install

Add gem 'ios-checkboxes' to your Gemfile and run bundle install

Usage

Add //=require ios-checkboxes to your app/assets/javascripts/application.js. This will require jquery automaticaly.

Also make sure you add the stylesheets to your application.css. Just require ios-checkboxes to get the default styling.

You may choose not to use it and write the styling from scratch. In that case just don't add the iox-checkboxes to the stylesheet manifest.

After you have all the ingridients in place you can convert your checkboxes into "On/Off" buttons with this JavaScript snippet:

$(function(){
  $("input:checkbox").iphoneStyle();
});

Using as a standalone

Go to the build/output directory and download its content. Put it content under your server root. Make sure you reference the JavaScript and CSS files properly.

Don't reference it as 'assets/ios-checkboxes.js', instead use the full file name from the download (it will change with time): assets/ios-checkboxes-d0bbaf0b834d61ddccf7510739596dd2.js

The same applies to CSS, but you don't need to do anything for images.

The use of the "digest" appended to the end of file ensures that your users will have the most recent version of the files (cashe buster).

Customisation

If the defaut stylesheet doesn't fit your design, you can customize it.

First, add a .css.sass file to your application:

// app/assets/stylesheets/iphone.css.sass
@import "./ios-checkboxes/mixins"

// This will change the default for everything
$iphone-style-height: 33px // Default = 27px
$iphone-style-font-size: 30px // Default = 17px
$iphone-style-images-path: 'custom-path-to-images' // Default = ios-checkboxes

+iphone-style // This includes the actual styles with customised values

// You can also override the styles for sub-selectors
.huge
  $iphone-style-height: 60px
  $iphone-style-font-size: 40px
  $iphone-style-images-path: 'hude-images'
  +iphone-style

If you modify the $iphone-style-images-path then you have to provide a (Sprockets) directory with the following files:

off.png
on.png
slider.png
slider_center.png
slider_left.png
slider_right.png

Development

git clone [email protected]:dnagir/ios-checkboxes.git
cd ios-checkboxes
bundle install
bundle rspec spec
(cd spec/dummy/ && bundle exec rails s)
# Now go to http://localhost:3000/jasmine to run the specs

To build the standalone assets: sh build/build.sh.

Help

Credits

Thomas Reynolds for the original implementation.

License (MIT)

Copyright 2011 Thomas Reynolds, Dmytrii Nagirniak

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.