Answers for "on hover stop marquee"

1

marquee tag stop on hover

<marquee onMouseOver="this.stop()" onMouseOut="this.start()">Text</marquee>
Posted by: Guest on May-01-2021
0

marquee tag stop on hover

<marquee behavior="scroll" direction="left" onmouseover="this.stop();" onmouseout="this.start();">
    Go on... hover me (and hold the mouse over)!
</marquee>
Posted by: Guest on May-01-2021

Browse Popular Code Answers by Language