Fancybox无法按预期工作

时间:2013-07-10 11:00:32

标签: javascript jquery fancybox

如果我没有点击上一个或下一个按钮,但是当我点击上一个或下一个按钮时,Fancybox工作正常,则不会加载组图像,只会加载我可以点击的图像

我使用的是jquery.fancybox-1.3.4.js,这是我调用的脚本

$(document).ready(function() {
  $("a[rel=example_group]").fancybox({
    'transitionIn'  : 'none',
    'transitionOut' : 'none',
    'titlePosition' : 'over',
    'titleFormat'   : function(title, currentArray, currentIndex, currentOpts) {
      return '<span id="fancybox-title-over">Image ' + (currentIndex + 1) + ' / ' + currentArray.length + (title.length ? ' &nbsp; ' + title : '') + '</span>';
    }
  });
});

这是我打电话的代码:

<a rel="example_group" href="images/page1-img3.jpg" alt="" /><img alt="" src="images/page1-img3.jpg"/></a>

1 个答案:

答案 0 :(得分:0)

根据您的示例,我只会看到Fancybox会在您的a[rel=example_group]查询中找到的一张图片。你的例子完整了吗?

如果您查看fancybox's website,该示例包含3个锚标记,每个图片对应一个锚标记:

<a rel="example_group" title="Custom title" href="http://farm3.static.flickr.com/2641/4163443812_df0b200930.jpg">
    <img alt="" src="http://farm3.static.flickr.com/2641/4163443812_df0b200930_m.jpg" />
</a>

<a rel="example_group" title="" href="http://farm3.static.flickr.com/2591/4135665747_3091966c91.jpg">
    <img alt="" src="http://farm3.static.flickr.com/2591/4135665747_3091966c91_m.jpg" />
</a>

<a rel="example_group" title="" href="http://farm3.static.flickr.com/2561/4048285842_90b7e9f8d1.jpg">
    <img alt="" src="http://farm3.static.flickr.com/2561/4048285842_90b7e9f8d1_m.jpg" />
</a>