How to stop marquee text when you move your mouse over it?
1 Answers
Try this:
html code
<html>
<head>
<meta charset="utf-8">
<title></title>
</head>
<body>
<marquee class="move" onmouseover=this.stop(); onmouseout=this.start();>Hello</marquee>
</body>
</html>
css code
.move:hover {
cursor: pointer;
}
0
Likes
0
Dislikes
Likes
Dislikes
0
Comments
Login to add comment