zoukankan      html  css  js  c++  java
  • 3. HTML5 video + DOM

    HTML5 的 video 元素同样拥有方法, 属性, 事件。

    以下例子中调用了两个方法: play(), pause();

    调用了两个属性, paused, width。

    <!DOCTYPE html>
    <html>
    <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>

  • 相关阅读:
    区间DP——石子合并
    线性DP-最短编辑距离、编辑距离
    生成树协议
    交换机技术
    以太网原理
    接口知识点
    目前在中国有影响的几种现场总线比较
    委托
    C#有关继承知识点
    C#数组总结
  • 原文地址:https://www.cnblogs.com/gavinwu/p/3222868.html
Copyright © 2011-2022 走看看