This example uses a custom tween that interpolates the window’s vertical scroll offset.
Last active
September 30, 2017 16:53
-
-
Save mbostock/1649463 to your computer and use it in GitHub Desktop.
Smooth Scrolling
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
license: gpl-3.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<meta charset="utf-8"> | |
<style> | |
body { | |
padding: 40px; | |
} | |
h1, h2 { | |
font-family: "Helvetica Neue"; | |
padding-bottom: 120px; | |
} | |
h2 { | |
padding-bottom: 240px; | |
} | |
</style> | |
<h1>Smooth scrolling!</h1> | |
<h2>Get ready to scroll, in 3, 2, 1…</h2> | |
<h1>Whee!</h1> | |
<h1>Whee!</h1> | |
<h1>Whee!!!</h1> | |
<h1>Whee!!!!!</h1> | |
<h1>Whee!!!</h1> | |
<h1>Whee!!</h1> | |
<h1>Whee!!!</h1> | |
<h1>Whee!!!!!</h1> | |
<h1>Whee!!!</h1> | |
<h1>Whee!!</h1> | |
<h1>Whee!!!</h1> | |
<h1>Whee!!!!!</h1> | |
<h1>Whee!!!</h1> | |
<h1>Whee!!</h1> | |
<h1>Whee!!!</h1> | |
<h1>Whee!!!!!</h1> | |
<h1>Whee!!!</h1> | |
<h1>Whee!!</h1> | |
<h1>Whee!!</h1> | |
<h1>Whee!!</h1> | |
<h1>Whee!!</h1> | |
<h1>Whee!!!</h1> | |
<h1>Whee!!!!!</h1> | |
<h1>Whee!!!!!!!!!!!!!</h1> | |
<h1>Whee!!!!!</h1> | |
<h1>Whee!!!</h1> | |
<h1>Whee!!</h1> | |
<h1>Whee!!!</h1> | |
<h1>Whee!!!!!</h1> | |
<h1>Whee!!!</h1> | |
<h1>Whee!!</h1> | |
<h1>Whee!!!</h1> | |
<h1>Whee!!!!!</h1> | |
<h1>Whee!!!!!!!!!!!!!!!!</h1> | |
<h1>Whee!!!!!</h1> | |
<h1>Whee!!!</h1> | |
<h1>Whee!!</h1> | |
<h1>Whee!!!</h1> | |
<h1>Whee!!!!!</h1> | |
<h1>Whee!!!</h1> | |
<h1>Whee!!</h1> | |
<h1>Whee!!!</h1> | |
<h1>Whee!!!!!</h1> | |
<h1>Whee!!!</h1> | |
<h1>Whee!!</h1> | |
<h2>All done!</h2> | |
<script src="//d3js.org/d3.v3.min.js"></script> | |
<script> | |
d3.transition() | |
.delay(1500) | |
.duration(7500) | |
.tween("scroll", scrollTween(document.body.getBoundingClientRect().height - window.innerHeight)); | |
function scrollTween(offset) { | |
return function() { | |
var i = d3.interpolateNumber(window.pageYOffset || document.documentElement.scrollTop, offset); | |
return function(t) { scrollTo(0, i(t)); }; | |
}; | |
} | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Note: for Firefox you'll need to select document.documentElement rather than "body".