开发者

Block scroll when Lightbox appears

开发者 https://www.devze.com 2023-02-21 11:24 出处:网络
I use DO开发者_运维技巧M window script for Lightboxes on my website. Is there any way to block scroll on main page when Lightbox appears and unblock when it disappears?

I use DO开发者_运维技巧M window script for Lightboxes on my website. Is there any way to block scroll on main page when Lightbox appears and unblock when it disappears?

Or, maybe, you can advice better Lightbox script?

Thanks.


User this to disable or enable window scrollbar :

document.body.style.overflow="hidden";

on show your lightbox and

document.body.style.overflow="visible";

on hiding your lightbox.

but if your are really looking for a better lightbox library you can try this jQuery plugin :

jQuery Lightbox Plugin

0

精彩评论

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