php HTML5视频

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php HTML5视频相关的知识,希望对你有一定的参考价值。

<video id="video" poster="<?= $video->img->url ?>" onclick="this.play()">
    <source src="<?= $video->link ?>" type="video/mp4">
    Your browser does not support the video tag.
</video> 

<script>
    var video = document.getElementById('video');

    function videoPausePlayHandler(e) {
        if (e.type == 'playing') {
            video.setAttribute("controls","controls");
        }   else if (e.type == 'pause') {
        video.removeAttribute("controls");
        }
    }

    video.addEventListener('playing', videoPausePlayHandler, false);
    video.addEventListener('pause', videoPausePlayHandler, false);
</script>

以上是关于php HTML5视频的主要内容,如果未能解决你的问题,请参考以下文章