orbit slider - remove progress bar from orbit slider

1.4k views Asked by At

How can I remove or turn off the timer progress bar of the orbit slider?

Looked at all the custom settings but don't see anything that would do that.

2

There are 2 answers

2
AudioBubble On

Inside the HTML file:

<ul data-orbit data-options="timer:false;">
  <li>...</li>
  <li>...</li>
</ul>

or inside the JS file:

$(document).foundation({
  orbit: {
    timer: false
  }
});

If you use Foundation 5, see the docs here, and in case of Foundation 4 here. You can find the instructions about the JS-settings of Orbit at the end of the mentioned docs pages.

0
CodeOut On

Add the following to your stylesheet:

.orbit-timer { display:none;}

It will completely hide the progress bar, it will just be on a continuous loop.