HTML Editor
<!DOCTYPE html> <html lang="en-US"> <head> <style> body{ width:3000px; height:3000px; } </style> </head> <body> <button onclick="myFunction()">Scroll</button> <script> function myFunction(){ window.scroll({ top: 1500, left: 1500, behavior: 'smooth' }); } </script> </body> </html>
OUTPUT
×

Save as Private