如何使用平滑效果的window.scrollTo()

时间:2017-02-15 22:44:52

标签: javascript html css vanilla-typescript

我可以使用以下

滚动到200px
btn.addEventListener("click", function(){
    window.scrollTo(0,200);
})

但我想要一个流畅的滚动效果。我该怎么做?

2 个答案:

答案 0 :(得分:59)

2018更新

现在,您只需使用window.scrollTo({ top: 0, behavior: 'smooth' })即可平滑滚动页面。



const btn = document.getElementById('elem');

btn.addEventListener('click', () => window.scrollTo({
  top: 400,
  behavior: 'smooth',
}));

#x {
  height: 1000px;
  background: lightblue;
}

<div id='x'>
  <button id='elem'>Click to scroll</button>
</div>
&#13;
&#13;
&#13;

旧解决方案

您可以这样做:

&#13;
&#13;
var btn = document.getElementById('x');

btn.addEventListener("click", function() {
  var i = 10;
  var int = setInterval(function() {
    window.scrollTo(0, i);
    i += 10;
    if (i >= 200) clearInterval(int);
  }, 20);
})
&#13;
body {
  background: #3a2613;
  height: 600px;
}
&#13;
<button id='x'>click</button>
&#13;
&#13;
&#13;

ES6 递归方式:

&#13;
&#13;
const btn = document.getElementById('elem');

const smoothScroll = (h) => {
  let i = h || 0;
  if (i < 200) {
    setTimeout(() => {
      window.scrollTo(0, i);
      smoothScroll(i + 10);
    }, 10);
  }
}

btn.addEventListener('click', () => smoothScroll());
&#13;
body {
  background: #9a6432;
  height: 600px;
}
&#13;
<button id='elem'>click</button>
&#13;
&#13;
&#13;

答案 1 :(得分:2)

 $('html, body').animate({scrollTop:1200},'50');

你可以做到这一点!