我正在使用fancybox,但是当我有一组PDF图像时,导航箭头允许您在覆盖在PDF控件之上的pdf文档之间进行切换,从而阻止用户滚动浏览文档等。
我已经创建了一个显示问题的小提琴,我将非常感谢任何帮助。
问候
汤姆
<a class="fancybox">Click to show pdf</a>
$(".fancybox").click(function(){
var photoArray = [];
photoArray.push({ href: 'http://samplepdf.com/sample.pdf' , type: 'iframe' });
photoArray.push({ href: 'http://samplepdf.com/sample.pdf' , type: 'iframe' });
photoArray.push({ href: 'http://samplepdf.com/sample.pdf' , type: 'iframe' });
photoArray.push({ href: 'http://samplepdf.com/sample.pdf' , type: 'iframe' });
$('.fancy').fancybox();
$.fancybox.open(photoArray, {
'openEffect': 'elastic',
'closeEffect': 'elastic',
'nextEffect': 'fade',
'openSpeed': 600,
'closeSpeed': 200,
autoSize : false,
beforeLoad : function() {
this.width = 1000;
this.height = 800;
},
helpers: {
overlay: null
//buttons: {}
},
iframe: {
preload: false
}
});
});