0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

React-scrollを使ってナビゲーションバーからスクロール・例

Posted at

Reactアプリでナビゲーションバーから所定の位置にスクロールしたかったので、React-scrollを使いました。
https://github.com/fisshy/react-scroll/blob/master/README.md

Sandbox上に作ったシンプルな例です。
https://codesandbox.io/s/react-scroll-with-nav-simple-test-3w30ki
Previewの画面ではNavが表示されないので、オプションから新しい画面を開く必要があります。例ではNavのためにBootstrapを使っていますがなくても使えます。

使用方法としてはnpmまたはyarnでプロジェクトにインストールして

npm install react-scroll

ImportしたLinkの「to」と行き先のElementの「name」を合わせると使えます。

import { Link, Element } from "react-scroll";
export default function App() {
     <Link to="jump">
          リンク先にジャンプ
     </Link>
    
    <Element name="jump">
        リンク先
    </Element>
}

ジャンプした先が隠れてしまう場合は、
Linkに offset={数値} などを入れると調整できます。

     <Link to="jump" offset={-100}>
          リンク先にジャンプ
     </Link>

他にも
smooth={true}でスクロールアニメーション
duration={500}で0.5秒のアニメーション
activeClass="active"でactiveのクラスが追加で色を変えたりなど
spy={true} 画面上の位置から自動的にacitiveClassを更新
などがあります。
詳しくは
https://github.com/fisshy/react-scroll/blob/master/README.md#propsoptions

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?