在 Firefox、IE7、IE9 和其他浏览器中,YouTube 嵌入工作正常,但在 IE8 中单击视频时没有任何反应。
我认为它可能是与 Z-index 相关的 CSS 问题?我试过改变周围的东西,但没有运气。
任何帮助都会很棒。访问该页面并单击图像以查看问题。
这是模态的CSS:
.youtubemodal {
width: 590px;
height: 464px;
position:fixed;
z-index:700;
top:180px;
left:50%;
display:none;
background-image: url('images/youtubeconsole.png');
margin-left:-295px;
}
.youtubediv {
position:absolute;
left:15px;
top:15px;
}
.youtubexbutton {
bottom: 12px;
right:13px;
position:absolute;
width:26px;
height:26px;
background-image:url('images/youtubex.png');
}
和脚本:
jQuery('#youtube').click(function(){
jQuery('.youtubemodal').show();
});
和 HTML:
<div class="youtubemodal"><div class="youtubediv"><iframe width="560" height="400" src="http://www.youtube.com/embed/G5FRxH8ytJk" frameborder="0" allowfullscreen></iframe></div>