MARQUEE 滚动,垂直向下滚动,垂直向上滚动,水平滚动

向上滚动:
<MARQUEE   direction=up   height=110   onmouseout=start();   onmouseover=stop();  
              scrollAmount=1   scrollDelay=0     width=300
            scrollleft= "0 "  
            scrolltop= "0 ">  要向上滚动的文字 </marquee>
向下滚动:
<MARQUEE   direction=down   height=110   onmouseout=start();   onmouseover=stop();  
              scrollAmount=1   scrollDelay=0     width=300
            scrollleft= "0 "  
            scrolltop= "0 ">  要向下滚的文字 </marquee>
向右:
<MARQUEE   direction=right   onmouseout=start();   onmouseover=stop();  
              scrollAmount=1   scrollDelay=0     width=300
            scrollleft= "0 "  
            scrolltop= "0 ">  要向右滚动的文字 </marquee>
向左:
<MARQUEE   direction=up   onmouseout=start();   onmouseover=stop();  
              scrollAmount=1   scrollDelay=0     width=300
            scrollleft= "0 "  
            scrolltop= "0 ">  要向左滚动的文字 </marquee>

交替滚动:
<MARQUEE   behavior=alternate   onmouseout=start();   onmouseover=stop();  
              scrollAmount=1   scrollDelay=0     width=300
            scrollleft= "0 "  
            scrolltop= "0 ">  要左右来回滚动的文字 </marquee>
原文地址:https://www.cnblogs.com/buaaboyi/p/2006635.html