开发者

Looking for DUAL slideshow/carousel options [closed]

Closed. This question is seeking recommendations for books, tools, software libraries, and more. It does not meet Stack Overflow guidelines guidelines. It is not currently accepting answers.

We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.

Closed 8 years ago.

开发者_Python百科 Improve this question

A client wants to share slides from a presentation on their site, but with a matching set of "annotations" alongside, essentially requiring a double, synchronized slideshow. I've only managed to find a single jQuery plugin, dualSlider, which does this. That seems suspicious so I wondered if I might just be missing other options due to naming, description, etc. Is anyone aware of others?

  • jQuery is preferred but not an absolute requirement.
  • Both panes should accept arbitrary content.
  • The ability to pull directly from Flickr galleries would make everyone very happy, but I realize this is uncommon.
  • I'm aware each set of slides could be composited into a single image file, etc. Trying to avoid that for the moment.


Most single sliders offer a way to control the sliders.

For example, the jQuery cycle plugin (See: http://jquery.malsup.com/cycle/), can easily be accomplished by creating two lists, giving them the same timings and speed, and create your buttons like this:

<div id="gallery1">... slideshow images/divs here</div>
<div id="gallery1">... second slideshow images/divs here</div>
<div id="nextbutton">
   Next
</div>

And in js:

$(document).ready(function () {
    $("#gallery1").cycle();
    $("#gallery2").cycle();

    $("#nextbutton").click(function () { 
        $("#gallery1").cycle('next');
        $("#gallery2").cycle('next');
    });
});  
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜