> I'm looking for a same kind of solution.
> Sliding rows of 3 images at the same time.
> 9 visible images in 3 rows (1-3) (4-6) (7-9).
> Next slide will hide (1-3) and who (10-12).
>
> Anyone know how to do that?
>


The way to do that with Cycle is to group the sets of images inside
divs and treat the divs as slides.  For example:

<div id="slideshow">
    <div>
        <img .... />
        <img .... />
        <img .... />
    </div>
    <div>
        <img .... />
        <img .... />
        <img .... />
    </div>
    <div>
        <img .... />
        <img .... />
        <img .... />
    </div>
</div>

Reply via email to