3

Is it possible to slow down the scroll speed on certain divs or even just the whole page by using just react?

use refs

mango
  • 381
  • 1
  • 5
  • 11
  • scroll speeds depends on your system settings, seems like you need a custom scroll component for specific dom elements – asotog Aug 21 '19 at 21:30

1 Answers1

0

Checkout the answer here: How to window.scrollTo() with a smooth effect

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

btn.addEventListener('click', () => window.scrollTo({
  top: 400,
  behavior: 'smooth',
}));
Daniel Richter
  • 340
  • 1
  • 5
  • 25