【发布时间】:2012-03-09 12:11:13
【问题描述】:
我已经设置了 fancybox 以便它显示我的 pdf,但是我想要它让 fancybox 左右导航箭头跳过 pdf 幻灯片...这可能吗?
提前致谢。
$(document).ready(function() {
$(".pdf").click(function() {
$.fancybox({
'width': '100%',
'height': '110%',
'autoScale' : true,
'autoDimensions': false,
'cyclic' : true,
'showNavArrows' : true,
'titleShow' : true,
'scrolling' : 'yes',
'content': '<iframe src="'+this.href+'" type="application/pdf" height="99%" width="100%"></iframe>',
'onClosed': function() {
$("#fancybox-inner").empty();
}
});
return false;
});
});
【问题讨论】: