ruby on rails - Bootstrap carousel with carrierwave -


I am trying to create a slideshow using many photos by the uploaded user through the carrier.

This is my post / show.html.erb

  and 

I do not understand the list of slides per slide: (It's still listing all the photos that I want to scroll to: (

You are enforcing active category for all photos used

  div Class = "item active"  

but it should be

  div class = "item"  

and it should be Add to your Javascript

  $ ('.item: first') .addClass ('active');  

Comments

Popular posts from this blog

sqlite3 - UPDATE a table from the SELECT of another one -

c# - Showing a SelectedItem's Property -

javascript - Render HTML after each iteration in loop -