当我使用 youtube iframe 进出 div 时使用transform: translate()它不允许我在 Firefox 中播放视频。适用于所有其他浏览器,甚至 IE8。这是我创建的小提琴http://jsfiddle.net/kE6vp/如果您注释掉转换属性,它可以正常工作,但是无法访问 youtube 按钮。再次仅在 Firefox 中。以前有人经历过吗?我正在使用 jquery isotope 插件,它使用 transform 属性放置内容。谢谢你的帮助。
<div class="pong">
<div class="ping">
<iframe width="326" height="237" frameborder="0" allowfullscreen="1" src="https://www.youtube.com/embed/lEhu2cFvDe8?wmode=opaque?rel=0?autoplay=1&"></iframe></div>
</div>
.pong{
height: 237px;
transform: translate(20px, 100px);
width: 326px;
}
.ping{
height: 237px;
position: absolute;
width: 326px;
z-index: 40000;
}