Carousel thumbnail responsive mobile display - bootstrap

后端 未结 2 1776

Is there an option to reduce number of thumbnails from 4(desktop) to 1(mobile) display.

The example of carousel thumbnail: http://bootsnipp.com/snipps/thumbnail-carousel

相关标签:
2条回答
  • 2021-01-24 09:23

    The snipp was created by William Woodgate, on 2013-06-09 14:17:36

    Get there : bootsnipp.com/index.php/snipps/thumbnail-carousel and, at the verry bottom of the page, there is a 'Disqus comment form'.

    Just fill a request. You'll most probably recieve a ''No, not in a javascript parameter.''

    I also saw this webpage about same plugin : http://bootply.com/63984

    For your particular context, just add the classes 'hidden-phone' 'hidden-tablet' on those specific elements you want to hide on a tablet or a phone.

    <ul>
        <li>asdf 1</li>
        <li>asdf 2</li>
        <li class="hidden-tablet">asdf 3</li>
        <li class="hidden-phone hidden-tablet">asdf 4</li>
    </ul>
    

    So you reduce the number of thumbnails from 4 to .. what you want on mobile.

    0 讨论(0)
  • 2021-01-24 09:30

    This might be help you out

    Twitter Bootstrap Vertical Thumbnail Carousel

    MAY THE SOURCE BE WITH YOU
    
    0 讨论(0)
提交回复
热议问题