jQuery slide vertical images
Posted
by
Mike
on Stack Overflow
See other posts from Stack Overflow
or by Mike
Published on 2011-01-07T14:22:00Z
Indexed on
2011/01/08
12:53 UTC
Read the original article
Hit count: 153
jQuery
Hello,
I hope someone can help me with the following problem.
I have a vertical scrollbar on my website which shows 5 images and will scroll 5 images further or back, depeding on where you clicked.
The jQuery code looks like this.
$(".productSlide .scrollable").scrollable();
$(".productSlide .scrollable").scrollable({ vertical: true, mousewheel: true });
I am new to jQuery and what I can achieve ist the following
<div class="scrollBlock">
<?php
for($i=0; $i<5; $i++)
include 'example1.php';
?>
</div>
<div class="scrollBlock">
<?php
for($i=0; $i<5; $i++)
include ' example1.php';
?>
</div>
<div class="scrollBlock">
<?php
for($i=0; $i<5; $i++)
include ' example1.php';
?>
</div>
In example1.php there is an image which will be showed 5 times. And everytime you click you’ll see the same div again with the same 5 pics. I can’t figure this one out without the "scrollBlock" div. How can I use more pictures in just one block – and it’s still scrolling 5 images?
Thanks so much!
© Stack Overflow or respective owner