如今HTML已经是比较热门的了,各种关于HTML5的应用程序、游戏、应用商店等也如火如荼的展开了。各大主流浏览器也纷纷开始支持HTML5标准,以备打赢新的一轮浏览器大战。
话不多说,不知道大家有没有发现,可以用比较新的版本的谷歌浏览器直接打开.mp3格式的音乐。自己可以试试:
这是用谷歌浏览器直接打开mp3文件的情况。 其实,许多新的浏览器都开始支持HTML5中
对于这个简易播放器具有播放\暂停、快进、快退等功能,结合
<%@language="javascript" %> <html> <head> <title>PlayMusic</title> <style type="text/css"> p.s{position:absolute;left:100px;top:200px;width:600px;} audio{width:600px;position:absolute;left:0px;top:100px;} canvas{position:absolute;left:0px;top:40px;} marquee{position:absolute;left:250px;top:180px;} h1{color:Red;} h1.a{color:Green;position:absolute;left:200px;top:50px;} </style> </head> <body> <h1 id="欢迎使用HTML-播放器">欢迎使用HTML5播放器</h1> <% var name = Request.QueryString("name"); if (name == "") name = ""; name1 = "save_music\\" + name + ".mp3"; //Response.Write(name); %> <marquee behavior=scroll scrolldelay=200 scrollamount=30 width="300" ><h1><%=name %></h1></marquee> <p class="s"> <canvas width="600" height="60" id="MusicCanvas" onclick="dealclick()"></canvas> <audio id="music" src=<%=name1 %> controls> 您的浏览器不支持HTML5中的audio标签 </audio> </p> </body> </html> <script type="text/javascript"> var c = document.getElementById("MusicCanvas"); var con = c.getContext("2d"); var toggle = document.getElementById("music"); drawPS(); drawQuick(); function drawPS() //flag=1表示播放命令,flag=0表示暂停 { con.save(); con.beginPath(); var g = con.createRadialGradient(275, 30, 0, 275, 30, 25); //创建渐变颜色 if (toggle.paused) //暂停状态 { g.addColorStop(0.2, "#1FD856"); // g.addColorStop(0.8, "black"); // toggle.play(); } else //播放状态 { g.addColorStop(0.2, "red"); //黄 g.addColorStop(0.8, "black"); // toggle.pause(); } con.fillStyle = g; con.arc(275, 30, 25, 0, Math.PI * 2, true); con.fill(); con.closePath(); con.restore(); } function drawQuick() // { con.save(); con.beginPath(); con.fillStyle = "grey"; con.fillRect(130, 10, 70, 40); con.fillStyle = "black"; con.moveTo(130, 30); con.lineTo(145, 13); con.lineTo(165, 13); con.lineTo(150, 30); con.lineTo(165, 47); con.lineTo(145, 47); con.lineTo(130, 30); con.fill(); con.moveTo(160, 30); con.lineTo(175, 13); con.lineTo(195, 13); con.lineTo(180, 30); con.lineTo(195, 47); con.lineTo(175, 47); con.lineTo(160, 30); con.fill(); con.closePath(); con.beginPath(); con.fillStyle = "grey"; var x = 350; con.fillRect(x, 10, 70, 40); x += 70; con.fillStyle = "black"; con.moveTo(x, 30); con.lineTo(x - 15, 13); con.lineTo(x - 35, 13); con.lineTo(x - 20, 30); con.lineTo(x - 35, 47); con.lineTo(x - 15, 47); con.lineTo(x, 30); x -= 30; con.moveTo(x, 30); con.lineTo(x - 15, 13); con.lineTo(x - 35, 13); con.lineTo(x - 20, 30); con.lineTo(x - 35, 47); con.lineTo(x - 15, 47); con.lineTo(x, 30); con.fill(); //con.moveTo(160, 40); con.lineTo(175, 23); con.lineTo(195, 23); con.lineTo(180, 40); con.lineTo(195, 57); con.lineTo(175, 57); con.lineTo(160, 40); con.fill(); con.closePath(); con.restore(); } function dealclick()//处理敲击事件 { var x = event.clientX; var y = event.clientY; var flag = getPos(x, y); //alert(x.toString() + " " + y.toString()+" "+flag.toString()); if(flag==0) return; switch (flag)// { case 1: drawPS(); break; case 2: quickOrslow(0); break; case 3: quickOrslow(1); break; } } function getPos(x, y) // { var px=100; var py=240; x-=px; y-=py; if (x >= 275 && x <= 325 && y >= 15 && y<= 65) return 1; if (x >= 130 && x <= 200 && y >= 20 && y <= 60) return 2; if (x >= 350 && x <= 420 && y >= 20 && y <= 60) return 3; return 0; } function quickOrslow(flag) // { var total = toggle.duration; var s = Math.ceil(total*0.05); if (flag == 1)//kuaijin { if (toggle.ended == true) return; var now = toggle.currentTime; if (total - now <= s) return; else toggle.currentTime = now + s; } else //后退 { var n = toggle.currentTime; if (n < s) return; else toggle.currentTime = n - s; } } </script>
这是全部的源代码,当然其中包含了一些ASP语句,适用于传递歌曲名的,可以不用考虑。
drawPS()是控制播放与暂停的函数,quickOrSlow()是控制快退的函数。
当然这个播放器是非常简陋的,但是通过加工美化,还是可以做出优秀的播放器的,而且是没有插件的。
以上是HTML5應用-實作簡單播放器的範例程式碼分享的詳細內容。更多資訊請關注PHP中文網其他相關文章!

H5不僅僅是HTML5的簡稱,它代表了一個更廣泛的現代網頁開發技術生態:1.H5包括HTML5、CSS3、JavaScript及相關API和技術;2.它提供更豐富、互動、流暢的用戶體驗,能在多設備上無縫運行;3.使用H5技術棧可以創建響應式網頁和復雜交互功能。

H5與HTML5指的是同一個東西,即HTML5。 HTML5是HTML的第五個版本,帶來了語義化標籤、多媒體支持、畫布與圖形、離線存儲與本地存儲等新功能,提升了網頁的表現力和交互性。

H5referstoHTML5,apivotaltechnologyinwebdevelopment.1)HTML5introducesnewelementsandAPIsforrich,dynamicwebapplications.2)Itsupportsmultimediawithoutplugins,enhancinguserexperienceacrossdevices.3)SemanticelementsimprovecontentstructureandSEO.4)H5'srespo

H5開發需要掌握的工具和框架包括Vue.js、React和Webpack。 1.Vue.js適用於構建用戶界面,支持組件化開發。 2.React通過虛擬DOM優化頁面渲染,適合複雜應用。 3.Webpack用於模塊打包,優化資源加載。

HTML5hassignificantlytransformedwebdevelopmentbyintroducingsemanticelements,enhancingmultimediasupport,andimprovingperformance.1)ItmadewebsitesmoreaccessibleandSEO-friendlywithsemanticelementslike,,and.2)HTML5introducednativeandtags,eliminatingthenee

H5通過語義化元素和ARIA屬性提升網頁的可訪問性和SEO效果。 1.使用、、等元素組織內容結構,提高SEO。 2.ARIA屬性如aria-label增強可訪問性,輔助技術用戶可順利使用網頁。

"h5"和"HTML5"在大多數情況下是相同的,但它們在某些特定場景下可能有不同的含義。 1."HTML5"是W3C定義的標準,包含新標籤和API。 2."h5"通常是HTML5的簡稱,但在移動開發中可能指基於HTML5的框架。理解這些區別有助於在項目中準確使用這些術語。

H5,即HTML5,是HTML的第五個版本,它為開發者提供了更強大的工具集,使得創建複雜的網頁應用變得更加簡單。 H5的核心功能包括:1)元素允許在網頁上繪製圖形和動畫;2)語義化標籤如、等,使網頁結構清晰,利於SEO優化;3)新API如GeolocationAPI,支持基於位置的服務;4)跨瀏覽器兼容性需要通過兼容性測試和Polyfill庫來確保。


熱AI工具

Undresser.AI Undress
人工智慧驅動的應用程序,用於創建逼真的裸體照片

AI Clothes Remover
用於從照片中去除衣服的線上人工智慧工具。

Undress AI Tool
免費脫衣圖片

Clothoff.io
AI脫衣器

AI Hentai Generator
免費產生 AI 無盡。

熱門文章

熱工具

SAP NetWeaver Server Adapter for Eclipse
將Eclipse與SAP NetWeaver應用伺服器整合。

Atom編輯器mac版下載
最受歡迎的的開源編輯器

ZendStudio 13.5.1 Mac
強大的PHP整合開發環境

VSCode Windows 64位元 下載
微軟推出的免費、功能強大的一款IDE編輯器

禪工作室 13.0.1
強大的PHP整合開發環境