我的iframe内装有带有Flash内容的html文件,在浏览器窗口宽度更改时,我必须调整iframe的大小。因此,我尝试在不同的媒体查询截止日期上更改transform:scale()属性。但是,不幸的是,Firefox在应用变换比例属性时使Flash内容消失了。有什么办法可以克服这个问题?

的HTML

<iframe width="900px" class="iframeStyle" align="middle" height="1200px" frameborder="0" src="http://linktoFlashContainingHtml.html"> </iframe>


的CSS

.iframeStyle {
    transform:scale(0.5);
}

最佳答案

如果希望Flash与CSS效果完美配合,请确保Flash在无窗口模式下运行。请参见http://helpx.adobe.com/flash/kb/flash-object-embed-tag-attributes.html#main_Using_Window_Mode__wmode__values_

关于html - 在firefox中应用transform:scale css属性时,IFRAME中加载的Flash内容消失了,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/19762458/

10-15 07:39