Untitled
unknown
plain_text
2 years ago
940 B
1
Indexable
Never
<!DOCTYPE html> <html> <head> <title>Left to Right Scroll Button with Deepak</title> <style> .container { width: 200px; height: 50px; overflow: hidden; position: relative; border: 1px solid #ccc; margin: 20px auto; } .content { position: absolute; left: 0; top: 0; animation: marquee 5s linear infinite; } @keyframes marquee { from { left: 0; } to { left: -100%; } } .btn { display: inline-block; background-color: #4CAF50; color: #fff; padding: 10px 20px; border: none; border-radius: 4px; cursor: pointer; } </style> </head> <body> <div class="container"> <div class="content">Deepak</div> </div> <button class="btn" onclick="stopMarquee()">Stop Scrolling</button> <script> function stopMarquee() { document.querySelector('.content').style.animation = 'none'; } </script> </body> </html>