HTML5 使用 embed
■知識點(diǎn)
<embed>標(biāo)簽可以定義嵌入插件,以便播放多媒體信息。用法如下:
<embed src="helloworld.swf"/>
src屬性必須設(shè)置,用來指定媒體源。<embed>標(biāo)簽包含的屬性說明如表所示。
屬 性 | 值 | 說 明 |
height | pixels (像素) | 設(shè)置嵌入內(nèi)容的高度 |
src | url | 嵌入內(nèi)容的URL |
type | type | 定義嵌入內(nèi)容的類型 |
width | pixels (像素) | 設(shè)置嵌入內(nèi)容的寬度 |
■實(shí)例設(shè)計
本例設(shè)計在網(wǎng)頁中插入背景音樂。新建HTML5文檔,直接在<body>#簽內(nèi)輸入下面代碼。
<embed src="images/bg .mp3" width="307" height="32" hidden="true" autostart="true" loop="infinite"></embed>
指定背景音樂為images/bg.mp3,通過hidden="true"屬性隱藏插件顯示,使用autostart="true"設(shè)置背景音樂自動播放,使用loop="infmite"設(shè)置背景音樂循環(huán)播放。設(shè)置完畢屬性,在瀏覽器中瀏覽,這時就可以邊瀏覽網(wǎng)頁,邊聽著背景音樂播放的小夜曲。
■小結(jié)
embed也可以播放視頻。例如:
<embed src="images/vid2.avi" width="413" height="292"></embed>
使用width和height屬性設(shè)置視頻播放窗口的大小。
點(diǎn)擊加載更多評論>>