behavior direction loop scrollAmount scrollDelay

marquee °³Ã¼ÀÇ direction, behavior, loop, scrollAmount, scrollDelay ¼Ó¼º ¿¹Á¦

¸¶Äû ³»¿ë
<DIV style="border:solid 1 blue">
<MARQUEE id=marqObj direction=right behavior=alternate loop=9 scrollamount=20 scrolldelay=100>¸¶Äû ³»¿ë</MARQUEE>
</DIV>
<SCRIPT>
str=marqObj.id+'.behavior='+marqObj.behavior+'<BR>';
str+=marqObj.id+'.direction='+marqObj.direction+'<BR>';
str+=marqObj.id+'.loop='+marqObj.loop+'<BR>';
str+=marqObj.id+'.scrollAmount='+marqObj.scrollAmount+'<BR>';
str+=marqObj.id+'.scrollDelay='+marqObj.scrollDelay+'<BR>';
document.write(str)
</SCRIPT>
<BUTTON onclick="marqObj.stop()">¸¶Äû ÁßÁö</BUTTON>
<BUTTON onclick="marqObj.start()">¸¶Äû °è¼Ó</BUTTON>