我希望我的popin以水平响应的方式响应,但不是垂直响应。 当我使用fancybox来调用img时,它可以工作,但不适用于iframe。
Check the difference between my first work and the second.
我用
<script type="text/javascript">
$(document).ready(function(){
$('.fancybox').fancybox({
openEffect: 'elastic',
closeEffect: 'elastic',
prevEffect: 'fade',
nextEffect: 'fade',
fitToView: true, //
maxWidth: "90%", //
type: 'iframe',
scrolling: 'no',
iframe : {
scrolling : 'no'
}
});
});
</script>
答案 0 :(得分:3)
您实际上可能需要将fitToView
设置为false
。
$(".fancybox").fancybox({
fitToView: false, // <-- so it will take your values into account
// other API options etc.
});
参见 JSFIDDLE