javascript - Looking for DUAL slideshow/carousel options -
a client wants share slides presentation on site, matching set of "annotations" alongside, requiring double, synchronized slideshow. i've managed find single jquery plugin, dualslider, this. seems suspicious wondered if might missing other options due naming, description, etc. aware of others?
- jquery preferred not absolute requirement.
- both panes should accept arbitrary content.
- the ability pull directly flickr galleries make happy, realize uncommon.
- i'm aware each set of slides composited single image file, etc. trying avoid moment.
most single sliders offer way control sliders.
for example, jquery cycle plugin (see: http://jquery.malsup.com/cycle/), can easialy accomplished creating 2 lists, giving them same timings , speed, , create buttons 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'); }); });
Comments
Post a Comment