可能吗?当鼠标悬停在你管视频上然后播放该视频时,鼠标悬停然后停止视频。它看起来像facebook

时间:2016-10-05 08:58:14

标签: javascript html css performance youtube

我需要帮助我的网站,我已经在该网站上添加视频。检查以下链接http://proudtobeawoman.in/滚动该页面,您可以看到该视频。我希望该视频在鼠标悬停时以及当鼠标悬停时播放停止那个视频。那可能吗?

1 个答案:

答案 0 :(得分:1)

尝试使用这样的方法,这可能会有所帮助,

$(document).ready(function(){

     var videoContainer = $('#videoContainer');

     videoContainer.on('mouseenter', function(e){
          e.preventDefault();
          $(this).trigger('click');
     });

      videoContainer.on('mouseleave', function(){
         e.preventDefault();
         $(this).trigger('click');
      });
});