Jquery and Fancybox repeat Gallery
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 af开发者_如何学编程ter 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
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
});
New facybox Version 2 there is a loop parameter you can pass when initiating the fancybox which should allow this. By default it is set to true so you will need not to set it to true. $("a#inline").fancybox();
精彩评论