1. 程式人生 > >marquee標籤屬性

marquee標籤屬性

<marquee direction="left" behavior="scroll" scrollamount="1" scrolldelay="1" width="778px" height="30px" bgcolor="#666666" onmouseover="this.stop()" onmouseout="this.start()"></marquee>

direction:滾動方向,up、down、left、right;

behavior:滾動效果,scroll(迴圈)、slide(一次)、alternate(交替);

scrollamount:滾動速度;

scrolldelay:滾動延時;

width、height:滾動範圍;

bgcolor:滾動背景色;

onmouseover="this.stop()":當滑鼠移動到目標,停止滾動;

onmouseout="this.start()":當滑鼠移出目標,開始滾動。