如何使Fancybox的关闭按钮不可见?

时间:2016-07-04 07:00:51

标签: jquery fancybox

我不希望用户能够通过单击右上角的默认关闭按钮来关闭fancybox:

enter image description here

$("a#ExporterSujetReponse", context).fancybox({
    'onStart': function () {

            loadDeverouillerSujetAvecReponse (this) ;

    },
    'overlayOpacity':0.4,
    'overlayColor':'#000000',
    'titleShow':false,
    'hideOnOverlayClick':false,
    'centerOnScroll':true,
    'onComplete' : function(){
            $.fancybox.resize();
            $('#fancybox-content').removeAttr('style').css({ 'height' : $(window).height()-100, 'margin' : '0 auto', 'width' : $(window).width()-150 });
    }
});

那么如何使默认关闭按钮不可见?

1 个答案:

答案 0 :(得分:1)

使用'showCloseButton':false

$("a#ExporterSujetReponse", context).fancybox({
  ...
  'showCloseButton':false, // add this line to hide close button
  ....
});