Search code examples
zurb-foundationorbit

How to have slider continuously play without pausing


I am using the Foundation Orbit slider to have a content slider without images on a homepage for the site I am developing. I was wondering if there is any way of forcing the slider to continuously play without pausing at all. Right now it is pausing on click and I have pause_on_hover set to false.

Thanks in advance


Solution

  • Add the following to your stylesheet along with pause_on_hover:false; in data-options:

    .orbit-timer {
        display:none;
    }
    

    It will completely hide the progress bar but it will also prevent the slider from stopping even if someone clicks it, it will just be on a continuous loop.