悬停时的视频播放

时间:2014-11-06 11:47:29

标签: javascript jquery html5 video

我有一系列视频缩略图,我想在悬停时触发播放/暂停。我设法让其中一个工作,但我遇到了列表中其他人的问题。附件是我的代码的小提琴。每个html5视频都会有一个div,因此悬停需要委托给视频,我不知道该怎么做。

http://jsfiddle.net/meh1aL74/

在这里预览html -

<div class="video">
            <div class="videoListCopy">
                <a href="videodetail.html" class="buttonMore">
                        <div class="breaker"><div class="line"></div></div>
                        <div class="buttonContent">
                            <div class="linkArrowContainer">
                                <div class="iconArrowRight"></div>
                                <div class="iconArrowRightTwo"></div>
                            </div>
                            <span>Others</span>
                        </div>
                    </a>
            </div>
            <div class="videoSlate">
                <video class="thevideo" loop>
                  <source src="http://www.w3schools.com/html/movie.ogg" type="video/ogg">
                Your browser does not support the video tag.
                </video>
            </div>
        </div>


          <div class="video">
            <div class="videoListCopy">
                <a href="videodetail.html" class="buttonMore">
                        <div class="breaker"><div class="line"></div></div>
                        <div class="buttonContent">
                            <div class="linkArrowContainer">
                                <div class="iconArrowRight"></div>
                                <div class="iconArrowRightTwo"></div>
                            </div>
                            <span>Others</span>
                        </div>
                    </a>
            </div>
            <div class="videoSlate">
                <video class="thevideo" loop>
                  <source src="http://www.w3schools.com/html/movie.ogg" type="video/ogg">
                Your browser does not support the video tag.
                </video>
            </div>
        </div>

在这里预览javascript -

    var figure = $(".video");
    var vid = $("video");

    [].forEach.call(figure, function (item) {
            item.addEventListener('mouseover', hoverVideo, false);
            item.addEventListener('mouseout', hideVideo, false);
    });

    function hoverVideo(e) {  
            $('.thevideo')[0].play(); 
    }

    function hideVideo(e) {
            $('.thevideo')[0].pause(); 
    }

非常感谢你的帮助。

奥利弗

5 个答案:

答案 0 :(得分:10)

为什么你与jQuery一起使用本机事件绑定?

无论如何,如果您想本地处理事件,可以使用.bind method并将每个视频的索引传递给处理程序

var figure = $(".video");
var vid = figure.find("video");

[].forEach.call(figure, function (item,index) {
    item.addEventListener('mouseover', hoverVideo.bind(item,index), false);
    item.addEventListener('mouseout', hideVideo.bind(item,index), false);
});

function hoverVideo(index, e) {
    vid[index].play(); 
}

function hideVideo(index, e) {
    vid[index].pause(); 
}

http://jsfiddle.net/gaby/0o8tt2z8/2/

演示

或者你可以去完整的jQuery

var figure = $(".video").hover( hoverVideo, hideVideo );

function hoverVideo(e) { $('video', this).get(0).play(); }
function hideVideo(e) { $('video', this).get(0).pause(); }

http://jsfiddle.net/gaby/0o8tt2z8/1/

演示

答案 1 :(得分:5)

最短的版本就是这个

<div>
    <video onmouseover="this.play()" onmouseout="this.pause();this.currentTime=0;">
    <source src="yourVideo.ogg" type="video/ogg"></source>
    </video>    
</div>

如果你愿意的话,这样会更清洁。

答案 2 :(得分:1)

hoverVideo()函数专门调用.thevideo的第一个实例,因此将鼠标悬停在任何一个实例上都会播放第一个视频。

您必须抓住事件发生的元素,然后在该元素中找到.thevideo元素:

var figure = $(".video");
var vid = $("video");

[].forEach.call(figure, function (item) {
  item.addEventListener('mouseover', hoverVideo, false);
  item.addEventListener('mouseout', hideVideo, false);
});

function hoverVideo(e) {
  $(this).find('.thevideo')[0].play();
}

function hideVideo(e) {
  $(this).find('.thevideo')[0].pause();
}

这是一个更新的小提琴: http://jsfiddle.net/52mxdbgy/1/

答案 3 :(得分:0)

您的函数明确要求输入第一个视频:$('.thevideo')[0].play();(数组中的第一个元素)。

因此,您需要(至少)传递绑定操作的视频的索引,以确保播放和暂停正确的视频。

例如:

$(document).ready(function() {       
    $('.video').each(function(i, obj) {
        $(this).on("mouseover", function() { hoverVideo(i); });
        $(this).on("mouseout", function() { hideVideo(i); });
    });
});

function hoverVideo(i) {  
    $('.thevideo')[i].play(); 
}

function hideVideo(i) {
    $('.thevideo')[i].pause(); 
}

我使用jQuery的.on()方法,所以所有方法都是jQuery(而不是与JavaScript的混合)。

您可以在以下jsFiddle中看到这一点:

DEMO

答案 4 :(得分:0)

这里没有jQuery,有点ES6。 ;)

for(let tupel of document.querySelectorAll('video')) {
  tupel.addEventListener('mouseover', (e) => {
    e.target.play()
  }, false);

  tupel.addEventListener('mouseout', (e) => {
    e.target.pause()
  }, false);
}