“Role no React” Respostas de código

reaja como rolar para o elemento

import React, { useRef } from 'react'

const scrollToRef = (ref) => window.scrollTo(0, ref.current.offsetTop)   
// General scroll to element function

const ScrollDemo = () => {

   const myRef = useRef(null)
   const executeScroll = () => scrollToRef(myRef)

   return (
      <> 
         <div ref={myRef}>I wanna be seen</div> 
         <button onClick={executeScroll}> Click to scroll </button> 
      </>
   )
}
Graceful Grasshopper

Role no React

$ npm install react-scroll
Hastings Keith

Como rolar para um elemento JavaScript reagir

import { scroller } from "react-scroll";

// excluded React component syntax...

  scrollToSection = () => {
    scroller.scrollTo("your_css_class_here", {
      duration: 800,
      delay: 0,
      smooth: "easeInOutQuart",
    });
  };
Mr Dojo

React-scroll

$ npm install react-scroll

# or yarn

$ yarn add react-scroll
Salo Hopeless

Respostas semelhantes a “Role no React”

Perguntas semelhantes a “Role no React”

Mais respostas relacionadas para “Role no React” em Shell/Bash

Procure respostas de código populares por idioma

Procurar outros idiomas de código