HTML5如何實現圖片上顯示視頻的效果呢?
在HTML中播放視頻
在HTML5之前, 視頻只能在瀏覽器使用插件播放(如Flash).
HTML5 元素指定在網頁中嵌入視頻的標準方法.
瀏覽器支持
表中的數字指定第一個完全支持的瀏覽器版本
元素<video>4.09.03.54.010.5HTML 元素
在HTML中,使用 元素顯示一個視頻:
<video width="320" height="240" controls> <source src="/static/assets/tutorials/front/html/movie.mp4" type="video/mp4"> <source src="/static/assets/tutorials/front/html/movie.ogg" type="video/ogg">Your browser does not support the video tag.</video>讓我試試:http://codingdict.com/article/1460