Fancybox gallery without a href?

后端 未结 5 648
自闭症患者
自闭症患者 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条回答
  •  轮回少年
    2020-12-11 04:58

    This worked for me:

    $(".CLASSNAME").each(function(){
    
       $(this).fancybox({
    
           href : $(this).attr('src')
    
       });
    
    
    });
    

提交回复
热议问题