web-dev-qa-db-fra.com

Comment window.scrollTo () avec un effet lisse

Je peux faire défiler à 200px en utilisant ce qui suit

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

Mais je veux un effet de défilement lisse. Comment puis-je faire cela?

30
KolaCaine

Mise à jour 2018

Vous pouvez maintenant utiliser simplement window.scrollTo({ top: 0, behavior: 'smooth' }) pour faire défiler la page avec un effet lisse.

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>

Solutions plus anciennes

Vous pouvez faire quelque chose comme ça:

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);
})
body {
  background: #3a2613;
  height: 600px;
}
<button id='x'>click</button>

ES6 approche récursive:

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());
body {
  background: #9a6432;
  height: 600px;
}
<button id='elem'>click</button>
72
kind user
 $('html, body').animate({scrollTop:1200},'50');

tu peux faire ça bro!

2
Myco Claro