html 5

作者: 风___________ | 来源:发表于2018-02-05 19:55 被阅读2次

    新标记

    // <header>
    // <aside>
    // <footer>
    // <article>
    // <section>
    // <time>
    <!-- datatime : -->
    <time datatime = "2012-02-28">2/18/2018</time>
    // <nav>
    // <video>
    <video controls autoplay width = "512" height = "288" src = "xxx.mp4">
    /** 浏览器兼容 **/
    <video controls autoplay width = "512" height = "288">
      <source src = "xxx.mp4">
      <source src = "xxx.webm">
      <!-- 后面两项是可选的  type: 容器格式 codecs:解码器 -->
      <source src = "xxx.ogv" type = 'video/ogg'; codecs = "theora,vorbis">
      <p> sorry ,cannot play</p>
    </video>
    // canvas 绘图
    

    相关文章

      网友评论

          本文标题:html 5

          本文链接:https://www.haomeiwen.com/subject/hjfbzxtx.html