Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/robin850/nivo-rails
Nivo slider integration for Ruby on Rails
https://github.com/robin850/nivo-rails
Last synced: 15 days ago
JSON representation
Nivo slider integration for Ruby on Rails
- Host: GitHub
- URL: https://github.com/robin850/nivo-rails
- Owner: robin850
- License: mit
- Created: 2013-01-19T17:08:53.000Z (almost 12 years ago)
- Default Branch: master
- Last Pushed: 2017-05-16T16:51:36.000Z (over 7 years ago)
- Last Synced: 2024-10-04T17:24:13.062Z (about 1 month ago)
- Language: Ruby
- Size: 33.2 KB
- Stars: 9
- Watchers: 2
- Forks: 7
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Nivo Slider with Ruby on Rails
Nivo Slider is one of the most popular JavaScript slider. This gem provides
integration with Ruby on Rails.## Installation
First, add this to your Gemfile:
~~~ruby
gem 'nivo-rails'# If you are running Rails 5.1+, jQuery might not be a dependency
# of your project but it's still needed for Nivo Slider to run.
gem 'jquery-rails'
~~~Then run the `bundle` command to install the gem.
## Usage
This gem provides files required to setup correctly Nivo Slider on your site.
It requires a few lines of code to setup a slideshow. First, make sure to
import the CSS file:~~~sass
/* Inside a normal application.css file
*= require nivo
*/// Or if you are using Sass/SCSS
@import "nivo";
~~~And then import the JavaScript file as well:
~~~javascript
//= require nivo
~~~You can now easily add slideshows in your web pages. To avoid writing all the
boilerplate needed by Nivo Slider, you can rely on the `nivo_slider` tag:~~~erb
<%= nivo_slider id: "slider" do %>
<%= image_tag "foo.png", title: "A very nice photo!" %>
<%= image_tag "bar.png" %>
<% end %>
~~~This helper behaves like Action View's `content_tag` helper apart from the fact that
it **doesn't** escape the provided content by default. It also sets the div's id
to `"slider"` by default and adds a `nivoSlider` class as well.If you want to set a theme, you should wrap the `nivo_slider` call with a `div`
element with the proper class:~~~erb
<%= nivo_slider id: "slider" do %>
<% end %>
~~~Make sure then to initialize Nivo Slider on the given element:
~~~javascript
$(window).on('load', function() {
$('#slider').nivoSlider();
});// Or if you are using Turbolinks
$(document).on('turbolinks:load', function () {
$('#slider').nivoSlider();
});
~~~Enjoy!
## Contributing
1. Fork it
2. Create your feature branch (`git checkout -b my-new-feature`)
3. Commit your changes (`git commit -am 'Add some feature'`)
4. Push to the branch (`git push origin my-new-feature`)
5. Create new Pull Request## License
[Nivo Slider](https://github.com/Codeinwp/Nivo-Slider-jQuery) is available under
the terms of the MIT license. This project is also available under the MIT license.
Please see the `LICENSE` file for more information.