2022年2月22日 星期二

(html_聲音) 網頁插入音樂的語法

由於網頁製做功力尚淺. 放進聲音還不是我目前學習的重點...; 所以. 先留存! 以後再試囉!~
 
<embed src="第2課.mp4" width=325 height=300 autostart=false></embed>
<video src="第2課.mp4" width="400" height="300" controls autoplay poster="第2課.jpg"
 
撥放音樂(隱藏MID)
<BGSOUND balance=0 src="網址(隱藏mid) " volume=-20 loop=infinite>
 
撥放音樂(MID)
「歌名」<FONT COLOR=8800FF><embed src=音樂網址(mid) loop=3 >
 
撥放音樂(RM)
「歌名」BY:歌手<EMBED align=middle
src=網址(rm) width=90 height=40
type=audio/x-pn-realaudio-plugin autostart="true" loop="true" volume="100"
exts="ra�Cram" Init fn="load-types" mime-types="mime.types" ALT="(Random)">
 
撥放音樂(隱藏RM)
<embed src="音樂的網址(隱藏rm)"autostart=true loop=true width="0" height="0">
 
★普通音樂語法:
<embed src="音樂網址" autostart=true loop=true width="99" height="99">
 
★MP3音樂語法:
<embed width="200" height="150" src="音樂網址">
 
★Midi音樂語法:
<BGSOUND SRC="音樂網址"LOOP=-1>
 
★rm音樂語法:
<embed src="音樂網址" width="159" height="99" autostart="true" hidden="false" loop="infinite" align="middle" volume="100" type="audio/x-pn-realaudio-plugin" exts="ra,ram" Init fn="load-types" mime-types="mime.types" ALT="(Random)">
 
★MTV公開音樂語法:〔swf檔用〕
<embed src="音樂網址">
 
☆語法解釋
◆autostart="true" 表示自動播放
autostart="false" 表示不自動播放
◆hidden="true" 隱藏播放器
◆loop="0" 播放一次即停止
loop="1" 無限次重複播放
◆volume="0-100" 調整音量大小
◆width="230" 播放器寬度,可自行更改為適合寬度
hight="40" 播放器高度,可自行更改為適合高度
 
 
☆多首音樂播放
<SCRIPT Language="JavaScript">
tips = new Array(4);
tips[0] = "音樂網址";
tips[1] = "音樂網址";
tips[2] = "音樂網址";
tips[3] = "音樂網址";
tips[4] = "音樂網址";
tips[5] = "音樂網址";
tips[6] = "音樂網址";
tips[7] = "音樂網址";index = Math.floor(Math.random() * tips.length);
document.write("<EMBED SRC=" + tips[index] + " autostart=true width=0 height=0 loop=true hidden=TRUE></EMBED>");
</SCRIPT>
--------------------------------------------------------
 
可以用 HTML 語法直接內嵌語法:
------------------------------------------------------------------------
<embed src="http://你的音樂檔址" hidden="false" height="45" width="165" loop="0" start="true" volume="100">
<noembed>
<bgsound src="http://你的音樂檔址" balance="0" loop="0" volume="0">
</noembed>
 

語法元素註解:
------------------------------------------------------------------------
src=「音樂檔的連結位置」
hidden=「撥放器顯示 "true"=開啟 "false"=關閉」
height=「撥放器高度」
width=「撥放器寬度」
loop=「撥放次數 "0"=為無限撥放」
autostart=「自動開始撥放 "true"=是 "false"=否」
volume=「音量 "0~100"」
 

------------------------------------------------------------------------
現在應該沒有瀏覽器不支援<embed>語法,但如果很不幸的使用者用的是阿公級的電腦或 ie 版本,就需要背景音樂<bgsound>語法。
基本上<noembed>...</noembed>你可以選擇放或不放都沒關係。
 
若你想要好看一點的播放器來播放 MP3 的話,你可以考慮使用 Flash MP3 Player;上 Google 打 "Flash MP3 Player" 就會跑出許多教學網頁。
 
推薦可以去 http://blog.yam.com/jinnsblog/article/5987820 看一看,下載已經寫好程式使用;內容寫得非常淺顯易懂。
由於沒有取得作者同意,恕不引述了;我今天才下載來看看過,你可以放心,裡面沒有病毒 ^^

沒有留言:

張貼留言

(Centos-7s) 更新: 網卡名稱改回 eth0 的方法

將 CentOS 7 網卡名稱修改, 用回 Eth0 的方法:   1) # vi /etc/sysconfig/grub 內容大概是這樣:   GRUB_TIMEOUT=5 GRUB_DISTRIBUTOR="$(sed 's, release...