• html5音频及视频


    <!DOCTYPE html>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <title>Document</title>
    </head>
    <body>
        
        <!-- 视频  controls提供播放、暂停、音量等控件,loop循环播放,autoplay自动播放
                常用方法paly()、pause()、load()等方法
        -->
        <video width="240" height="240" controls="controls" loop="loop" autoplay="autoplay">
            <!-- 浏览器使用第一个可识别的格式 -->
            <source src="movie.ogg" type="video/ogg">  
            <source src="movie.mp4" type="video/mp4"> 
            <!-- 以下供不支持video元素的浏览器显示  -->
            sssss.
        </video>
    
        <!-- 音频 ,与video类似 -->
        <audio src="/i/song.ogg" controls="controls">
            your brower does not surrport the audio element.
        </audio>
    
    </body>
    </html>
    由于无法解释的神圣旨意,我们徒然地到处找你;你就是孤独,你就是神秘,比恒河或者日落还要遥远。。。。。。
  • 相关阅读:
    257. Binary Tree Paths
    324. Wiggle Sort II
    315. Count of Smaller Numbers After Self
    350. Intersection of Two Arrays II
    295. Find Median from Data Stream
    289. Game of Life
    287. Find the Duplicate Number
    279. Perfect Squares
    384. Shuffle an Array
    E
  • 原文地址:https://www.cnblogs.com/momoli/p/13523789.html
Copyright © 2020-2023  润新知