所以我的问题是,我需要显示一张封面图片,而实际的视频将被隐藏。一旦有人点击图像,视频就会变得可见,应该会自动开始播放。我的代码在这里http://jsfiddle.net/Vq8Wr/。这在 Chrome 中运行良好,但在任何其他浏览器中都没有。任何解决方案将不胜感激
代码如下
<script src="http://code.jquery.com/jquery-1.7.2.min.js"></script>
<style>
.hide{
display:none
}
img{
width:500px;
}
</style>
<iframe class="hide" src="http://player.vimeo.com/video/59372982?api=1" width="500" height="281" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe>
<img src="http://allthingsd.com/files/2011/05/clouds-1259.jpg" id="video-cover" >
<script>
$("#video-cover").click(function(){
$(this).hide();
var f = $('iframe'),
url = f.attr('src').split('?')[0];
f.show();
var data = { method: "play" };
f[0].contentWindow.postMessage(JSON.stringify(data), url);
})
</script>