HTML5_video

来源:互联网 发布:淘宝怎么查买家退货率 编辑:程序博客网 时间:2024/05/19 05:05

http://www.w3schools.com/html/tryit.asp?filename=tryhtml5_video_js_prop



<!DOCTYPE html> <html> <body> <div style="text-align:center">   <button onclick="playPause()">Play/Pause</button>   <button onclick="makeBig()">Big</button>  <button onclick="makeSmall()">Small</button>  <button onclick="makeNormal()">Normal</button>  <br>   <video id="video1" width="420" controls>    <source src="mov_bbb.mp4" type="video/mp4">    <source src="mov_bbb.ogg" type="video/ogg">    Your browser does not support HTML5 video.  </video></div> <script> 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> <p>Video courtesy of <a href="http://www.bigbuckbunny.org/" target="_blank">Big Buck Bunny</a>.</p></body> </html>




BrowserMP4WebMOggInternet ExplorerYESNONOChromeYESYESYESFirefoxNO
Update: Firefox 21 running on Windows 7, Windows 8, Windows Vista, and Android now supports MP4YESYESSafariYESNONOOperaNOYESYES

原创粉丝点击