[JavaScript30] 💡 22. Follow Along Link Highlighter


💡 22. Follow Along Link Highlighter


表示されたリンクにマウスを置くと、どのような効果が得られますか.

イニシャルコード
<!DOCTYPE html>
<html lang="ko">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>👀👀👀Follow Along Nav</title>
    <link rel="stylesheet" href="style_JuneHyung.css">
</head>
<body>
    <nav>
        <ul class="menu">
            <li><a href="">Home</a></li>
            <li><a href="">Order Status</a></li>
            <li><a href="">Tweets</a></li>
            <li><a href="">Read Our History</a></li>
            <li><a href="">Contact Us</a></li>
        </ul>
    </nav>
    <div class="wrapper">
        <p>Lorem ipsum dolor sit amet, <a href="">consectetur</a> adipisicing elit. Est <a href="">explicabo</a> unde natus necessitatibus esse obcaecati distinctio, aut itaque, qui vitae!</p>
        <p>Aspernatur sapiente quae sint <a href="">soluta</a> modi, atque praesentium laborum pariatur earum <a href="">quaerat</a> cupiditate consequuntur facilis ullam dignissimos, aperiam quam veniam.</p>
        <p>Cum ipsam quod, incidunt sit ex <a href="">tempore</a> placeat maxime <a href="">corrupti</a> possimus <a href="">veritatis</a> ipsum fugit recusandae est doloremque? Hic, <a href="">quibusdam</a>, nulla.</p>
        <p>Esse quibusdam, ad, ducimus cupiditate <a href="">nulla</a>, quae magni odit <a href="">totam</a> ut consequatur eveniet sunt quam provident sapiente dicta neque quod.</p>
        <p>Aliquam <a href="">dicta</a> sequi culpa fugiat <a href="">consequuntur</a> pariatur optio ad minima, maxime <a href="">odio</a>, distinctio magni impedit tempore enim repellendus <a href="">repudiandae</a> quas!</p>
    </div>

    <script>
      // 👀👀👀👀👀👀👀👀👀👀👀👀👀👀👀
    </script>
</body>
</html>
初期画面

🌏 新知


👉 getBoundingClientRect()


DOMRectオブジェクトに戻り、要素のサイズとビューポートの位置に関する情報を入力します.
リファレンス
https://developer.mozilla.org/en-US/docs/Web/API/Element/getBoundingClientRect

🌏 プロセス


👉 1.定数の作成

const triggers = document.querySelectorAll('a');
const highlight = document.createElement('span');
highlight.classList.add('highlight');
document.body.append(highlight);
aラベルとspanラベルを作成してhighlightクラスを追加します.

👉 2.効果適用関数

function highlightLink(){
    // console.log(this);
    const linkCoords = this.getBoundingClientRect();
    console.log(linkCoords);

    const coords = {
        width: linkCoords.width,
        height: linkCoords.height,
        top: linkCoords.top + window.scrollY,
        left: linkCoords.left + window.scrollX
    };

    highlight.style.width = `${coords.width}px`;
    highlight.style.height = `${coords.height}px`;
    highlight.style.transform = `translate(${coords.left}px, ${coords.top}px)`;

}
LinkCoordsをコンソールに撮って、下の写真のようです.

highlightのwidthとheightをlinkCoordsのwidth、heightとして指定し、top、leftを設定するとスクロール時に異常が発生します.
異常を解決するために、スクロール時にスクロールYとXの値を上部と左側に追加して位置を変更します.