4
3

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.

JavaScriptでスムーススクロールを実装する

Posted at

こんなやつ

Image from Gyazo
動作デモ → https://jsfiddle.net/zr36gcpb/

コード

HTML
<div class="scroll">
  <a class="scroll__button" href=".contents__1">Scroll</a>
  <a class="scroll__button" href=".contents__2">Scroll</a>
  <a class="scroll__button" href=".contents__3">Scroll</a>
  <a class="scroll__button" href=".contents__4">Scroll</a>
</div>

<div class="contents">
  <div class="contents__1">Contents1</div>
  <div class="contents__2">Contents2</div>
  <div class="contents__3">Contents3</div>
  <div class="contents__4">Contents4</div>
</div>
JavaScript
const smoothScroll = e => {
  const target = document.querySelector(e.target.getAttribute('href'));
  const position = target.getBoundingClientRect().top + window.scrollY;

  e.preventDefault();

  window.scrollTo({
    top: position,
    behavior: 'smooth'
  });
  //window.scrollToの引数のtopは「ドキュメントの左上を基準にした目標の要素のY座標のピクセル値」で、
  //behaviorにはsmoothを指定する事で挙動がスムーススクロールになります。
}

const buttons = document.querySelectorAll('.scroll__button');

buttons.forEach(button => {
  button.addEventListener('click', smoothScroll);
})

上記の関数smoothScrollを任意のaタグに走らせることで、擬似的にhrefで指定した要素にスムーススクロールするボタンになります。

やっている事は単純で、aタグに指定されているhrefの値を取得して、変数positionにその指定された要素の「ビューポートの左上からのY座標のピクセル数」と「現在スクロールしているY座標のピクセル数」を足したもの(=対象の要素の絶対位置)を格納しています。
そのpositionの値を使用して、window.scrollToで目標の位置までスクロールしています。
そして、もちろんaタグのデフォルトの動作をキャンセルするpreventDefaultも指定します。

もしaタグ以外で使用したい場合は、hrefの代わりにdata属性を指定してそれをgetAttributeすれば良いと思います。


出来ました。(*゚▽゚ノノ゙☆パチパチパチ

Image from Gyazo

※注意点
一部のブラウザでパラメーター部分が非対応なため、普通のスクロールになってしまう事がある。
ブラウザの実装状況(MDN)

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?