Answers for "stop marquee text on hover"

1

marquee tag stop on hover

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

how to stop marquee text in html when you hover over it

<head>
	<meta charset="utf-8">
	<title></title>
	<style type="text/css">
		marquee.move:hover {
			cursor: pointer;
		}
	</style>
</head>
<body>
<marquee class = "move" onmouseover = this.stop(); onmouseout = this.start();> hello</marquee>
Posted by: Guest on June-23-2021

Browse Popular Code Answers by Language