【问题标题】:javascript with html <video> load() & play() function not firing带有 html <video> load() & play() 函数的 javascript 没有触发
【发布时间】:2011-11-03 18:28:44
【问题描述】:

我一直在用 HTML 构建一个自定义的视频播放器,但我遇到了一个问题,我怀疑它出在我的 javascript 上,经过几个小时的努力试图解决这个问题,我承认失败了。

问题是我的“loadChapter()”函数运行正常,但在第二次触发时,video.load() 和 video.play() 方法似乎停止工作。

由于与客户的披露协议,我无法包含指向实际页面的链接,这是经过审查的代码。

HTML:

<div id="shell">

    <div id="sidebar">
        <div id="logo">
            <a href="#">X</a>
        </div>

        <nav>
            <ul id="chapters">
                <li><a href="X">1.<span>X</span><div class="clear">&nbsp;</div></a></li>
                <li><a href="X">2.<span>X</span><div class="clear">&nbsp;</div></a></li>
                <li><a href="X">3.<span>X</span><div class="clear">&nbsp;</div></a></li>
                <li><a href="X">4.<span>X</span><div class="clear">&nbsp;</div></a></li>
                <li><a href="X">5.<span>X</span><div class="clear">&nbsp;</div></a></li>
                <li><a href="X">6.<span>X</span><div class="clear">&nbsp;</div></a></li>
                <li><a href="X">7.<span>X</span><div class="clear">&nbsp;</div></a></li>
            </ul>
        </nav>

        <div id="controls">
            <div id="vidnav">
                <a id="prev" title="Previous Chapter" href="#">Prev</a>
                <div>
                    <a id="play" title="Play Chapter" href="#" onclick="document.getElementById('video').play()" style="display:none;">Play</a>
                    <a id="pause" title="Pause Chapter" href="#" onclick="document.getElementById('video').pause()">Pause</a>
                </div>
                <a id="next" title="Next Chapter" href="#">Next</a>
            </div>
            <div class="clear">&nbsp;</div>
            <div id="vidseek">

            </div>
        </div>
    </div>

    <div id="content">
        <video id="video" autoplay="autoplay">
            <source id="mp4" src="video/X.mp4" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' />
            <source id="webm" src="video/X.webm" type='video/webm; codecs="vp8, vorbis"' />
            Your browser does not support HTML video.
        </video>
    </div>

</div>

javascript(使用 jQuery):

$(document).ready(function(){

var shell = "#shell";
var objH = $(shell).outerHeight();

autoMargins(shell);
$(window).resize(function() {
    autoMargins(shell);
});

function autoMargins(obj){
    var winH = $(window).height();
    if (winH >= objH ) {
        var topMargin = (winH/2) - (objH/2);
        $(obj).css('marginTop', topMargin);
    };
};

// GET VIDEO FILES
var video = document.getElementById('video')
var filepath = "video/";
var chapters = new Array();
var totalChapters = $('#chapters li').length;
for( i=0; i < totalChapters; i++ ) {
    chapters[i] = new Array();
    filename = $('#chapters li a:eq(' + i + ')').attr('href');
    for( j=0; j < 3; j++ ) {
        chapters[i][0] = filepath + filename + ".png";
        chapters[i][1] = filepath + filename + ".mp4";
        chapters[i][2] = filepath + filename + ".webm";
    };
};

// CHAPTER CONTROLS
var currentChapter = 0;
$('#chapters li a').click(function(e) {
    e.preventDefault();
    currentChapter = $(this).parent().index();
    loadChapter(currentChapter);
});


var mp4 = document.getElementById("mp4");
var webm = document.getElementById("webm");

function loadChapter(i) {
    $('#video').attr('poster', chapters[i][0]);
    mp4.setAttribute("src", chapters[i][1]);
    webm.setAttribute("src", chapters[i][2]);

    video.load();
    video.play();
};

$('#play').click(function(e) {
    e.preventDefault();
    $('#play').toggle();
    $('#pause').toggle();
});

$('#pause').click(function(e) {
    e.preventDefault();
    $('#play').toggle();
    $('#pause').toggle();
});

$('#next').click(function(e) {
    e.preventDefault();
    if (currentChapter < totalChapters ) {
        currentChapter++;
        loadChapter(currentChapter);
    };
});

$('#prev').click(function(e) {
    e.preventDefault();
    if (currentChapter >= 0 ) {
        currentChapter--;
        loadChapter(currentChapter);
    };
});

});

视频标签的“海报”和 dom 中的标记都通过 loadChapter() 脚本正确加载,但我很难弄清楚为什么视频只会加载和播放一次。

这里有什么我遗漏的吗?

【问题讨论】:

    标签: html video


    【解决方案1】:

    这个问题的解决方案比不正确的代码更神秘,当我在 Firefox 中测试视频时它工作正常,似乎 webkit 浏览器在嵌套引用文件时使用 video.load() 方法有一些问题标签。

    我通过编写条件语句并将新视频的 src 直接附加到标签本身来解决它:

    function loadChapter(i) {
        //$('#video').attr('poster', chapters[i][0]);
    
        if($.browser.safari || $.browser.msie) {
            $('#video').attr('src', chapters[i][1]);
        } else {
            $('#video').attr('src', chapters[i][2]);
        };
    
        video.load();
        video.play();
    };
    

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 1970-01-01
      • 2020-12-24
      • 2014-04-24
      • 1970-01-01
      • 2019-02-27
      • 2020-01-18
      • 1970-01-01
      • 1970-01-01
      相关资源
      最近更新 更多