Bootstrap JavaScript Carousel Doesn't Stop Cycling

前端 未结 11 1715
离开以前
离开以前 2020-12-29 02:25

Twitter Bootstrap Version: 2.0.3

Example HTML code:




        
11条回答
  •  心在旅途
    2020-12-29 03:28

    Actually, changing the defaults in bootstrap-carousel.js as follows helped me.

    Carousel.DEFAULTS = {
        interval: false,
        pause: 'hover',
        wrap: false
      }
    

提交回复
热议问题