LoginSignup
12
19

More than 5 years have passed since last update.

《CSS》CSS「scroll-behavior」だけでアンカースクロールを実装する方法。

Last updated at Posted at 2017-09-07

Chrome61がリリースされ、CSSの scroll-behavior プロパティを利用すると、JavaScriptなしのピュアCSSでアンカースクロールが実装できるようになりました。Firefoxでは36+から使えたやつですね。

scroll-behavior

スクロールするボックスを作って、 scroll-behaviorsmooth を与えると、アンカースクロールをクリック時にスムーススクロールします。


.wrap {
  height: 100vh;
  overflow: scroll;
  scroll-behavior: smooth;
}


対応状況

  • Chrome 61+
  • Firefox 36+

参考

おわります。

12
19
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
12
19