开发者

How to prevent default when clicking on Fancybox Overlay div?

开发者 https://www.devze.com 2023-04-11 03:16 出处:网络
I want to keep Fancybox open when someone clicks outside of the content popup on the div with the id of \"fancybox-overlay\".In other words, I want nothing to happen 开发者_开发百科when the user click

I want to keep Fancybox open when someone clicks outside of the content popup on the div with the id of "fancybox-overlay". In other words, I want nothing to happen 开发者_开发百科when the user clicks outside the bounds of the popup. Any suggestions?


Should be just available in the API: http://fancybox.net/api

I see a few different hiding options, such as "hideOnOverlayClick". Pass the relevant options into the fancybox function as a map, and it should work as you want.

$('.fancyLinks').fancybox({
  'hideOnOverlayClick': false
});

Where .fancyLinks is just some selector I made up, put whatever your target selector is.

for the newer version of Fancy box. try this Fancybox v2 No Hide on Overlay Click - How?


If anyone wants to do this in the new fancybox it's slightly more complex, and more versatile.

Here you can see I set the close button to false so that it doesn't show up, then I set the overlay to not close on click and reset the pointer style.

$('.fancyLinks').fancybox({               
    closeBtn:false, 
    helpers : {
        overlay : {
            closeClick : false,
            css : {
                'cursor':'default'
            }
        }
    }
});
0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号