我正在使用 fancyBox v2.1.4。在 Chrome 中,它允许在 fancyBox 打开时滚动主页。
我正在使用,locked: true
但这似乎并不能解决问题。我还考虑过使用e.preventDefault
禁用某些滚动功能作为另一种选择:
$(document).ready(function() {
$('.fancybox').fancybox({
'closeClick': false,
'scrolling': 'no',
helpers: {
overlay: {
closeClick: false,
locked: true
}
},
beforeShow: function() {
// considering some type of functionality here to prevent default
// of mousewheel
},
afterClose: function() {
// restore default action of mousewheel, although my initial attempts
// at this did not work
}
});
});