简体   繁体   中英

Stop pausing when mouse hover -Full Slider

I used Full Slider ( https://github.com/IronSummitMedia/startbootstrap-full-slider ) for my recent web development project.
It is a background image slider.
Now my problem is, when the user brings his/her mouse on to the web site, slider stops at the current slide because the slider is Full Screen.
I want to stop this (this means, pausing when mouse hover). But I have no idea how to do it. Only thins I know is I have to edit one of a javascript file.
Please help me guys.

In the bootstrap.js file there's a section for the carousel

Carousel.DEFAULTS = {
    interval: 5000,
    pause: 'hover',
    wrap: true,
    keyboard: true
  }

You could try removing the pause: 'hover', line

Edit: In the index.html file where the carousel interval is set change it to this.

$('.carousel').carousel({
        interval: 5000, //changes the speed
        pause: 'none'
})

That worked for me.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM