3
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 3 years have passed since last update.

ページ内遷移をスムーズに動かす挙動はブラウザ標準でできる

Posted at

タイトルオチです。

ページ内リンクをスムーズなスクロールで遷移する挙動はJavaScriptを利用して実装するのがあたりまえだと思っていましたが、
それ、ブラウザ標準でできるよ。
というのを知ったのでメモ

scroll-behavior: smooth;

html {
  scroll-behavior: smooth;
}

htmlもしくはbodyに対してこのCSSのプロパティを加えるだけでページ内遷移のスクロールがスムーズになります。

IE

IEにはこのプロパティはサポートされていないので別途ポリフィルを導入する必要があります。
https://github.com/iamdustan/smoothscroll

import smoothscroll from 'smoothscroll-polyfill';

// kick off the polyfill!
smoothscroll.polyfill();

ブラウザ標準バンザイ🙌
IEバイバイ

3
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
3
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?