Caisson =============== Caisson will provide a set of tools to facilitate the integration of Zurb-Foundation to your Rails project. Install ------- ``` gem install caisson ``` ### Rails 3 In your Gemfile: ```ruby gem 'zurb-foundation' gem 'caisson' ``` Orbit Slider ----- ### Basic examples ```erb <%= orbit_slider ['apple', 'banana', 'peach'] do |fruit| %>

I like <%= fruit %>

<% end %> ``` ```erb <% images = ["img1.jpg", "img2.jpg", "img3.jpg", "img4.jpg"] %> <%= orbit_slider images, columns_per_slide: 2 do |img| %> <% end %> ``` ### Supported parameters
Name Default
advance_speed 4000
animation horizontal-push
animation_speed 400
bullets false
bullet_thumbs false
bullet_thumbs_location
caption_animation fade
caption_animation_speed 800
captions false
class slider
columns_per_slide 1
directional_nav true
fluid 16x5
id
pause_on_hover true
reset_timer_on_click false
start_clock_on_mouse_out true
start_clock_on_mouse_out_after 1000
timer false
For more details on Orbit, see [Foundation - Orbit](http://foundation.zurb.com/docs/orbit.php). Copyright --------- Copyright (c) 2013 De Marque inc. See LICENSE for further details.