Open In App

Scrollspy using HTML CSS and JavaScript

Last Updated : 23 Jul, 2024
Comments
Improve
Suggest changes
Like Article
Like
Report
News Follow

In this article, we will learn about Scrollspy which is a popular feature used in modern web applications. It is used to highlight and allow to navigate through different sections of long web pages as the user scrolls. It increases the interaction between the user and the web application by providing visual cues and making it easier to navigate through content.

Approach:

  • To apply the Scrollspy using CSS, the basic idea is to define a set of styles that change dynamically based on the scroll position. This is achieved by utilizing CSS selectors and the :target pseudo-class.
  • HTML pages need to be organized into sections, each with a unique identifier using the id attribute. This section contains different content areas of the page.
  • CSS is defined for the sections and the navigation menu.
  • Apply Javascript to handle the navigation by applying the :active to the class.

Example: In this example, we will create a scrollspy by creating a different section.

HTML
<!-- index.html -->

<!DOCTYPE html>
<html lang="en">

<head>
    <title>Scrollspy</title>
    <link href="style.css" rel="stylesheet">
</head>

<body>
    <main>
        <nav class="section-nav">
            <ol>
                <li>
                    <a href="#introduction">
                        GeeksforGeeks
                    </a>
                </li>
                <li>
                    <a href="#request-response">
                        Write &amp; Earn
                    </a>
                </li>
                <li>
                    <a href="#authentication">
                        Problem solving
                    </a>
                </li>
                <li>
                    <a href="#endpoints">
                        Courses
                    </a>
                    <ul>
                        <li class="">
                            <a href="#endpoints--root">
                                Data Structure
                            </a>
                        </li>
                        <li class="">
                            <a href="#endpoints--cities-overview">
                                Java
                            </a>
                        </li>
                        <li class="">
                            <a href="#endpoints--city-detail">
                                DBMS
                            </a>
                        </li>
                        <li class="">
                            <a href="#endpoints--city-config">
                                JavaScript
                            </a>
                        </li>
                        <li class="">
                            <a href="#endpoints--city-spots-overview">
                                Python
                            </a>
                        </li>
                    </ul>
                </li>
            </ol>
        </nav>
        <div class="contentArea">
            <h1>GeeksforGeeks</h1>

            <section id="introduction">
                <h2>GeeksforGeeks</h2>
                <p></p>
            </section>

            <section id="request-response">
                <h2>Write &amp; Earn</h2>
                <p></p>
            </section>

            <section id="authentication">
                <h2>Problem Solving</h2>
                <p></p>
            </section>

            <section id="endpoints">
                <h2>Courses</h2>
                <section id="endpoints--root">
                    <h3>Data Structure</h3>
                    <p></p>
                </section>

                <section id="endpoints--cities-overview">
                    <h3>Java</h3>
                    <p></p>
                </section>

                <section id="endpoints--city-detail">
                    <h3>DBMS</h3>
                    <p></p>
                </section>

                <section id="endpoints--city-config">
                    <h3>JavaScript</h3>
                    <p></p>
                </section>

                <section id="endpoints--city-spots-overview">
                    <h3>Python</h3>
                    <p></p>
                </section>

                <section id="endpoints--city-spot-detail">
                    <h3>C/C++</h3>
                    <p></p>
                </section>

            </section>
        </div>
    </main>
</body>
  
</html>
CSS

Output:

Example 2: In this example, use some JavaScript code to build a Scrollspy to navigate through content.

HTML
<!DOCTYPE html>
<html>

<head>
    <link rel="stylesheet" type="text/css" href="style.css">
</head>

<body>
    <nav class="navbar">
        <ul>
            <li><a href="#section1">Section 1</a></li>
            <li><a href="#section2">Section 2</a></li>
            <li><a href="#section3">Section 3</a></li>
            <li><a href="#section4">Section 4</a></li>
        </ul>
    </nav>

    <div id="section1" class="section">Section 1</div>
    <div id="section2" class="section">Section 2</div>
    <div id="section3" class="section">Section 3</div>
    <div id="section4" class="section">Section 4</div>

    <script src="script.js"></script>
</body>

</html>
CSS JavaScript

Output:



Next Article

Similar Reads

three90RightbarBannerImg