您好,登錄后才能下訂單哦!
這篇文章給大家分享的是有關(guān)html5如何實(shí)現(xiàn)自動(dòng)播放mov格式視頻功能的內(nèi)容。小編覺得挺實(shí)用的,因此分享給大家做個(gè)參考,一起跟隨小編過來看看吧。
1、首先網(wǎng)站要支持.MOV格式文件
就是說,網(wǎng)站要能識(shí)別.MOV格式文件。
<mimeMap fileExtension=".mov" mimeType="video/quicktime" />
如何識(shí)別?設(shè)置MIME類型。以IIS為例。除了可以在IIS界面上直接設(shè)置,還可以在項(xiàng)目的web.config里設(shè)置。給個(gè)完整的例子
<?xml version="1.0" encoding="UTF-8"?> <configuration> <system.webServer> <directoryBrowse enabled="true" /> <defaultDocument> <files> <remove value="default.aspx" /> <remove value="iisstart.htm" /> <remove value="index.html" /> <remove value="index.htm" /> <remove value="Default.asp" /> <remove value="Default.htm" /> </files> </defaultDocument> <staticContent> <remove fileExtension=".mp4" /> <remove fileExtension=".wasm" /> <remove fileExtension=".woff" /> <remove fileExtension=".woff2" /> <remove fileExtension=".mov" /> <mimeMap fileExtension=".mp4" mimeType="video/mpeg" /> <mimeMap fileExtension=".wasm" mimeType="application/wasm" /> <mimeMap fileExtension=".woff" mimeType="application/font-woff" /> <mimeMap fileExtension=".woff2" mimeType="application/font-woff2" /> <mimeMap fileExtension=".mov" mimeType="video/quicktime" /> </staticContent> <httpProtocol> <customHeaders> <add name="Access-Control-Allow-Origin" value="*" /> </customHeaders> </httpProtocol> <caching> <profiles> <add extension=".png" policy="CacheUntilChange" kernelCachePolicy="CacheUntilChange" /> <add extension=".jpg" policy="CacheUntilChange" kernelCachePolicy="CacheUntilChange" /> <add extension=".css" policy="CacheUntilChange" kernelCachePolicy="CacheUntilChange" /> <add extension=".js" policy="CacheUntilChange" kernelCachePolicy="CacheUntilChange" /> </profiles> </caching> </system.webServer> </configuration>
2、HTML
<!DOCTYPE html> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> <style> body,center{ padding:0; margin:0; } </style> </head> <body> <center> <video id="video" width="640" height="480" muted controls autoplay="autoplay" preload="auto" > <source src="月半灣.mov" /> 您的瀏覽器不支持 HTML5 video 標(biāo)簽。 </video> </center> </body> </html>
本例會(huì)自動(dòng)播放。自動(dòng)播放的關(guān)鍵是“muted”屬性(靜音),否則無論是聲明autoplay=“autoplay”,還是用腳本video.play()都不起作用。這個(gè)應(yīng)該是故意設(shè)計(jì)成這樣的。
感謝各位的閱讀!關(guān)于“html5如何實(shí)現(xiàn)自動(dòng)播放mov格式視頻功能”這篇文章就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,讓大家可以學(xué)到更多知識(shí),如果覺得文章不錯(cuò),可以把它分享出去讓更多的人看到吧!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。