I want to update my gallery to the fancybox 2. Before everything worked in version 1.3.4 Now it is not possible to show the next image in the slideshow. It is always displayed first. However, if I go back previous and next then everything works.
Look here: http://f.cl.ly/items/3Z1W0t2Z0U1U39452Z1a/fancybox_error.m4v
<script type="text/javascript">
$(function() {
var images = [];
$.getJSON("/json/235", function(data) {
images = data.items;
}).error(function(e) { console.log( e ); });
$(".fancybox").click(function(e) {
e.preventDefault();
$.fancybox(images, {
"zoomSpeedIn":0,
"zoomSpeedOut":0,
"padding":10,
"overlayShow":true,
"nextEffect":"none",
"nextClick":true,
"helpers":{
"overlay":{
"opacity":0.5,
"css": { "background-color":"#000" }
},
"thumbs":{ "width":50, "height":50 }
},
index : $(this).attr("rel"),
prevEffect : "slideOut",
nextEffect : "slideIn",
nextClick : true,
type: "image"
});
});
});
</script>
the json file looks like
{"items":[{
"href":"\/images\/get\/resize\/1200\/1200\/gallery\/2010-12-12_Fraport_Werft\/SES_6880_01.JPG",
"title":"Fraport Werft"}, {
"href":"\/images\/get\/resize\/1200\/1200\/gallery\/2010-12-12_Fraport_Werft\/SES_6888_01.JPG",
"title":"Fraport Werft"}
]}
index : $(this).attr("rel"),becauseindexis used to set the starting element of the gallery and in this case is equal to therelattribute of the clicked element.... have you tried removing it? – JFK Jul 26 '12 at 19:42hrefitself? Bear in mind that therelattribute is used by fancybox to determine what elements belong to the same gallery. At the end, if you remove the JSON script and simply use$(".fancybox").fancybox();(besides to setting the samerelattribute to the<a>tags) it will work flawlessly. – JFK Jul 27 '12 at 17:41