views:

125

answers:

1

HI everyone

I hope you can help me, I have a problem with a requirement, I need to make a list of images that go to cycle.

I have this website, here I have some business cards and I need the images to be repeated after the end of the first cycle and continue like a loop.

here I leave the website, look that the list has a final.

http://tradelinks.com.au/index.php?service=painters

Thanks in Advance

+2  A: 

there is a cyclic parameter you can pass when initiating the fancybox which should allow this. By default it is set to false so you will need to set it to true.

Example:

$("a#inline").fancybox({
        'cyclic': true
    });
derek