1. 程式人生 > >【2018-01-23】HTML-插入視頻、音樂,簡單滾動效果

【2018-01-23】HTML-插入視頻、音樂,簡單滾動效果

視頻 embed blog 默認 loop alternate idt 方向 範圍

插入視頻:
在優酷等視頻網站,找到分享位置,復制html代碼,貼入網頁中
自動播放:swf後面?VideoIDS=XNDA3OTM4NA=&isAutoPlay=true&isShowRelatedVideo=false&embedid=-&showAd=0

插入音樂:
<embed src="images/333.mp3" hidden="true" autostart="true" loop="true">
src路徑 hidden是否顯示控制面板 autostart自動播放 loop循環

簡單的滾動效果:
<marquee direction="right" behavior="alternate" scrollamount="50">啦啦啦啦啦</marquee>
direction 滾動方向left,right,up,down
behavior 滾動方式scroll循環滾動,默認效果slide只滾動一次alternate來回交替
scrollamount 滾動速度,以像素為單位
scrolldelay 滾動延遲,以毫秒為單位
loop 滾動循環,默認為1一直循環,=2則只循環兩次
width、height滾動範圍
bgcolor 滾動背景色

【2018-01-23】HTML-插入視頻、音樂,簡單滾動效果