Stopper un Carousel
Bonjour,
Comment stopper le défilement automatique d'un carousel et le rendre manuel ?
Merci de votre réponse
Bonne journée
MG
Bonjour,
Comment stopper le défilement automatique d'un carousel et le rendre manuel ?
Merci de votre réponse
Bonne journée
MG
You cannot stop the rotation completely, but -
add this before the closing body tag -
$('.carousel').carousel({
interval: 3000
})
</script>
Then change the interval setting from 3000 to an higher number. It will not stop it completely but you can increase the delay so it does not rotate so often.
pziecina wrote
You cannot stop the rotation completely...
Actually, you can stop it completely if you know how to work with Bootstrap.
Change this:
<div id="carousel1" class="carousel slide hidden-xs" data-ride="carousel">
To this:
<div id="carousel1" class="carousel slide hidden-xs" data-ride="carousel" data-interval="0">
Nancy
Already have an account? Login
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.