2016-08-22 39 views
1

我在頁面加載時打開了fancybox,但每當我點擊fancybox之外,它都已關閉。我想防止這一點,我已經使用模態屬性,但它不工作。這裏是我的代碼中使用的fancybox v2.1.4fancybox模式屬性不起作用

$("#registration").fancybox({ 
     'width': '40%', 
     'height': '40%', 
     'autoScale': true, 
     'transitionIn': 'fade', 
     'transitionOut': 'fade', 
     'type': 'iframe', 
     'showCloseButton' : false, 
     'modal': true 
    }); 

回答

2

使用此功能,它是固定的..

closeClick : false, 
helpers : { 
    overlay : {closeClick: false} 
}