如何使用fancybox按钮助手+ fancybox缩略图助手?

时间:2012-01-21 21:25:03

标签: jquery button fancybox thumbnails helper

我需要同时使用它们(fancybox按钮助手和缩略图助手)

我一次只能使用其中一个。

以下是每个功能的示例: http://fancyapps.com/fancybox/#examples

已经尝试过使用这两个类:

<a class="fancybox-buttons fancybox-thumbs"    

但它不起作用...... 一次只有一个,如:

<a class="fancybox-buttons"    

<a class="fancybox-thumbs"     

这些是各自的javascripts:

            /*
            Button helper. Disable animations, hide close button, change title type and content
        */

        $('.fancybox-buttons').fancybox({
            openEffect  : 'none',
            closeEffect : 'none',

            prevEffect : 'none',
            nextEffect : 'none',

            closeBtn  : false,

            helpers : {
                title : {
                    type : 'inside'
                },
                buttons : {}
            },

            afterLoad : function() {
                this.title = 'Image ' + (this.index + 1) + ' of ' + this.group.length + (this.title ? ' - ' + this.title : '');
            }
        });


        /*
            Thumbnail helper. Disable animations, hide close button, arrows and slide to next gallery item if clicked
        */

        $('.fancybox-thumbs').fancybox({
            prevEffect : 'none',
            nextEffect : 'none',

            closeBtn  : false,
            arrows    : false,
            nextClick : true,

            helpers : { 
                thumbs : {
                    width  : 50,
                    height : 50
                }
            }
        });

    });    

由于

1 个答案:

答案 0 :(得分:8)

您只需要一个脚本即可使用这两个脚本,因此class中的单个html应该像

一样工作
<a class="fancybox" ...

然后是剧本:

$('.fancybox').fancybox({
 openEffect  : 'none',
 closeEffect : 'none',
 prevEffect : 'none',
 nextEffect : 'none',
 closeBtn  : false,
 arrows    : false,
 nextClick : true,
 helpers : {
  title : {
   type : 'inside'
  },
  buttons : {},
  thumbs : {
   width : 50,
   height : 50
  }
 },
 afterLoad : function() {
  this.title = 'Image ' + (this.index + 1) + ' of ' + this.group.length + (this.title ? ' - ' + this.title : '');
 }
});