React 16.8 +、機能コンポーネント
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>
</>
)
}
StackBlitsの完全なデモについては、ここをクリックしてください
React 16.3 +、クラスコンポーネント
class ReadyToScroll extends Component {
constructor(props) {
super(props)
this.myRef = React.createRef()
}
render() {
return <div ref={this.myRef}></div>
}
scrollToMyRef = () => window.scrollTo(0, this.myRef.current.offsetTop)
// run this method to execute scrolling.
}
クラスコンポーネント-Refコールバック
class ReadyToScroll extends Component {
myRef=null
// Optional
render() {
return <div ref={ (ref) => this.myRef=ref }></div>
}
scrollToMyRef = () => window.scrollTo(0, this.myRef.offsetTop)
// run this method to execute scrolling.
}
文字列参照を使用しないでください。
文字列参照はパフォーマンスに悪影響を及ぼし、構成可能ではないため、廃止されます(2018年8月)。
文字列参照にはいくつかの問題があり、レガシーと見なされており、将来のリリースの1つで削除される可能性があります。[公式Reactドキュメント]
リソース1 リソース2
オプション:スムーススクロールアニメーション
/* css */
html {
scroll-behavior: smooth;
}
refを子供に渡す
refは、反応コンポーネントではなくdom要素にアタッチする必要があります。したがって、子コンポーネントに渡す場合、prop refに名前を付けることはできません。
const MyComponent = () => {
const myRef = useRef(null)
return <ChildComp refProp={myRef}></ChildComp>
}
次に、refプロップをdom要素にアタッチします。
const ChildComp = (props) => {
return <div ref={props.refProp} />
}