Fancybox gallery without a href?

后端 未结 5 647
自闭症患者
自闭症患者 2020-12-11 04:35

I want to make fancybox gallery with img without using links (a href)? How i can do that?

HTML:

5条回答
  •  -上瘾入骨i
    2020-12-11 05:13

    You need to do the fancybox call on the images:

    $('#foo2 img').fancybox({
      'transitionIn'  :   'elastic',
      'transitionOut' :   'elastic',
      'speedIn'       :   600, 
      'speedOut'      :   200, 
      'overlayShow'   :   false
    });
    

    should work but i haven't tested it...

提交回复
热议问题