Disable fancyBox 2 from closing when clicking the background

后端 未结 5 1840
走了就别回头了
走了就别回头了 2021-01-04 02:26

In fancyBox 2, is there a key/value I could set that will disable the lightbox from closing when the user clicks the background (semi-transparent black background)?

5条回答
  •  青春惊慌失措
    2021-01-04 03:00

    To prevent close button- use:

    defaults: {  closeBtn   : false,}
    

    To prevent overlay close - use :

    F.helpers.overlay = {
            defaults : {closeClick : false,      // if true, fancyBox will be closed when user clicks on the overlay }}
    

    To prevent escape click close :

    defaults: {keys  : {//close  : [27], // escape key
                    close  : null, } }
    

提交回复
热议问题