0

我正在尝试为下面的播放器放置上面的图像。

这是我到目前为止得到的。我希望 gif 位于嵌入视频的上方,因此在播放时,它可以开始加载。

 <div id="video"><img src="images/hand.gif" width="500" height="281" />

 <iframe src="http://player.vimeo.com/video/66167649" width="500" height="281" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe>
 </div>
4

2 回答 2

1

根据您要执行的操作,您可以使用一些 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>
于 2013-08-01T11:53:30.763 回答
0

我最终弄清楚出了什么问题。所以基本上,除非像你所说的那样使用一些 JS,否则你不能这样做。还要确保您决定使用的 vimeo 视频的自动播放变量为 1,否则,无论您获得多么完美;它永远不会播放。

  <div id="video"><a href="#" id="showVideo"><img src="images/hand.gif" width="647" height="366" />

   <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.js"          type="text/javascript"></script>

   <script type="text/javascript">


    $('#showVideo').click(function () {
    $('#video').fadeIn().html('<iframe src="http://player.vimeo.com/video/66167649?title=0&amp;byline=0&amp;portrait=0&amp;color=d01e2f&amp;autoplay=1" width="647" height="366" align="middle" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe>');
$("#showVideo").hide()

  });
  </script>
于 2013-08-04T12:10:22.327 回答