我正在尝试在Fancybox iframe中集成Adobe Edge动画。它到目前为止工作... 但缩放视口向下显示底部的白色边框。
(https://dl.dropboxusercontent.com/u/13655174/Screenshot%20-%2026.11.2013%20%2C%2021_06_52.png)
我知道这个问题是调用整个Edge HTML-Page的效果,我只是不知道如何解决这个问题。
我在Adobe Edge中使用过这个脚本:
http://sarahjustine.com/2013/04/08/create-scale-to-fit-projects-with-adobe-edge-animate/
这是我的代码:
jQuery的:
$(".fancybox_iframe").fancybox({
type: 'iframe',
'width' : '960px',
'height' : '731px',
scrolling: 'no',
fitToView: true,
iframe: {
scrolling: 'no',
preload: false,
},
padding : 0,
margin : 40,
nextEffect : 'none',
prevEffect : 'none',
openEffect : 'fade',
autoCenter : true
});
HTML:
<div class="col-lg-4 col-sm-6 col-xs-12">
<a class="fancybox_iframe" alt="" rel="gallery" href="sevenm.html">
<div id="sevenm"><img src="img/works/thumbs/thumb_sevenm.jpg" class="thumbnail img-responsive">
</div> </a>
</div>
谢谢!