two or three slideshow in one page

nicoledude / 2011-07-14 05:03:44   

hi every body and sorry for my english.
I would like to integrate more than one slideshow in my pages
vertically or horizontally like in this exemple Webpage
how can i do that?
what does modify or duplicate in the php slideshow file?
thanks

G470 / 2011-07-14 10:26:07   

Hi, actually this is not possible without good coding skills.
One way would be to write a custom plugin or exhibit format that will load some predefined sites into one site.
Another solution would be to write a plugin that splits your images from one site into several slideshows.

Kaff / 2011-07-23 15:26:26   
  1. Hi, it's possible, and no need super coding skills ) 
  2. As G740 said, you can split slideshow via JQuery Cycle plugin. But format of the exhibition should NOT be 'Slideshow' (there is some CSS problems, one slideshow layered on top of another), and Process HTML should be turn Off. 
  3. So, everything you need is type code in text field, something like this:
  4. <script type='text/javascript'> $(document).ready(function(){$('#s1').cycle({fx:'fade', speed:'3000', timeout: 6000, next: '#next1', prev: '#prev1' }); }); </script>
  5. <div class='your_style'><a id='prev1' href='#'>Previous</a> / <a id='next1' href='#'>Next Image</a></div>
  6. <div id='s1'>
  7. <div><a href='#'><img src='image1.jpg' class='img-bot' /></a></div>
  8. <div><a href='#'><img src='image2.jpg' class='img-bot' /></a></div>
  9. </div>

... without brakes in script! Where s1 is number of your slideshow, and control buttons next1 and prev1 must change number along with the number of slideshow.
And another problem — you need a HUGE space/trigger between slideshow, cause they are layered one over another.

Maybe there are someone who can help us with CSS containers?

Kaff / 2011-07-23 15:30:31   

Oh eh... something happend with code )

This thread has been closed, thank you.