3

I search lots on net for Bootstrap Vertical Thumbnail Carousel, but i didn't find any solution for that, any Idea ?

Shivam Pandya
  • 1,061
  • 3
  • 29
  • 64

1 Answers1

0

Here is a github repository

https://github.com/tutorialdrive/-Bootstrap-Vertical-Thumbnail-Carousel

enter image description here

enter image description here

First I use 3 js and 2 css for this

js

bootstrap-transition.js

bootstrap-carousel.js

jquery.min.js

css

bootstrap.css

style.css

and here is my JQ code for Carousel

    $(document).ready(function() {
        $('#myCarousel').carousel({
            interval: false
        })
    });

also I use some ready made vertical Carousel code from here

http://jsfiddle.net/HHsxc/2/

For more, please download it from above github link and don't forgot to fork, also it is in developing status, bug fixing and suggestion are appreciated.

Shivam Pandya
  • 1,061
  • 3
  • 29
  • 64