根据您要执行的操作,您可以使用一些 JS 隐藏视频,直到单击图像。
<a href="#" id="video" class="show_hide">
<img src="images/hand.gif" width="500" height="281" />
</a>
<div class="slidingDiv">
<iframe src="http://player.vimeo.com/video/66167649" width="500" height="281" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe>
</div>
确保引用 jQuery
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.js" type="text/javascript"></script>
JS
<script type="text/javascript">
$(document).ready(function(){
$(".slidingDiv").hide();
$(".show_hide").show();
$('.show_hide').click(function(){
$(".slidingDiv").slideToggle();
$("#video").hide();
});
});
</script>