Click to See Complete Forum and Search --> : Marquee


lukezweb
11-29-2003, 05:23 AM
Could someone make a simple Marquee that is like this...


______________
|<| Content |>|
-----------------

so the middle is scrolling left slowly and when the mouse goes over the arrow cells it goes in the right direction?

the cells bit needs to be

<TD WIDTH=50>[<<]</TD>

and

<TD WIDTH=100><AMRQUEE>Items</MARQUEE></TD>

and

<TD WIDTH=50>[>>]</TD>

Mr J
11-29-2003, 12:02 PM
Please try the following


<table border="1">
<tr>

<TD WIDTH=50 onmouseout="javascript:mar.direction='left'">[<<]</TD>

<TD WIDTH=100>
<marquee id="mar" direction="left" width="400px" height="20px" scrollAmount="2"> My Marquee </marquee>
</TD>

<TD WIDTH=50 onmouseover="javascript:mar.direction='right'">[>>]</TD>

</tr>
</table>