HTML播放视频

<!DOCTYPE HTML>
<html>
<head>
    <title>video test page</title>
</head>
<body>
<div style="text-align:center;">
    <button onclick="playPause()">播放/暂停</button>
    <button onclick="makeBig()"></button>
    <button onclick="makeNormal()"></button>
    <button onclick="makeSmall()"></button>
    <br />
    <video id="video1" width="420" style="margin-top:15px;">
    <source src="/example/html5/mov_bbb.mp4" type="video/mp4" />
    <source src="/example/html5/mov_bbb.ogg" type="video/ogg" />
    Your browser does not support HTML5 video.
  </video>
</div>
<script type="text/javascript">
    var myVideo=document.getElementById("video1");
    function playPause()
    {
        if(myVideo.paused)
            myVideo.play();
        else
            myVideo.pause();
    }

    function makeBig()
    {
        myVideo.width=560;
    }

    function makeSmall()
    {
        myVideo.width=320;
    }

    function makeNormal()
    {
        myVideo.width=420;
    }
</script>
</body>
</html>

猜你喜欢

转载自blog.csdn.net/levones/article/details/80488750