Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm trying to make a manual slideshow combining Orbit and reveal. The user clicks a link, showing the beginning of the slideshow. Then they click to get to the next or previous slide.

Each slideshow currently looks like this:

<div id="reveal-x" class="reveal-modal">
  <div id="orbit-id">
    <div>
      <img />
      <p>Caption</p>
    </div> <!-- Repeat as many as needed -->
  </div>
</div>

There's a function to load each slideshow. It has lines that look like this:

$("#orbit-id").orbit({fluid:"16x6", timer: false});

I'm running into two problems.

  1. The content isn't showing in the reveal box. According to Chrome's testing tools, the image and text are indeed moving to inside the reveal box when it is its turn to show, but I don't actually see the content.

  2. I can't get the slideshow to NOT start automatically. I'd rather it be entirely manual.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.