×

Save Your Code

If you click the save button, your code will be saved, and you get an URL you can share with others.

By clicking the "Save" button you agree to our terms and conditions.

Report Error

×

Save to Google Drive

If you have a Google account, you can save this code to your Google Drive.

Google will ask you to confirm Google Drive access.

×

Open from Google Drive

If you have saved a file to Google Drive, you can open it here:

Result Size: 625 x 571
x
 
<!DOCTYPE html>
<html>
<head>
<style>
#section1 {
  height: 600px;
  background-color: pink;
}
#section2 {
  height: 600px;
  background-color: yellow;
}
</style>
</head>
<body>
<h1>Smooth Scroll</h1>
<p>Click on the links inside the pink and yellow DIVs before you click on the "Apply smooth scroll effect" button - to see the effect before and after applying the smooth scroll effect.</p>
<p>Note: IE, Edge and Safari does not support the scrollBehavior property.</p>
<button onclick="myFunction()">Apply smooth scroll effect</button>
<div class="main" id="section1">
  <h2>Section 1</h2>
  <a href="#section2">Click Me to Go to Section 2 Below</a>
</div>
<div class="main" id="section2">
  <h2>Section 2</h2>
  <a href="#section1">Click Me to Go to Section 1 Above</a>
</div>
<script>
function myFunction() {
  document.documentElement.style.scrollBehavior = "smooth";
}
</script>
</body>
<!-- Mirrored from www.w3schools.com/cssref/tryit.asp?filename=trycss_js_scrollbehavior by HTTrack Website Copier/3.x [XR&CO'2014], Mon, 27 Jan 2020 03:01:23 GMT -->
</html>
×

Report a Problem: