Created
October 15, 2017 11:04
-
-
Save stefanledin/4d0b4f5e24ac2e59840dbe7ee7e16afc to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!doctype html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8"> | |
| <title>Intersection Observer</title> | |
| </head> | |
| <body> | |
| <div class="page-wrapper"> | |
| <nav class="navbar"> | |
| <ul> | |
| <li><a href="#section-1" class="current">Section 1</a></li> | |
| <li><a href="#section-2">Section 2</a></li> | |
| <li><a href="#section-3">Section 3</a></li> | |
| </ul> | |
| </nav> | |
| <section id="section-1" class="current"> | |
| <h1>Section 1</h1> | |
| </section> | |
| <section id="section-2"> | |
| <h1>Section 2</h1> | |
| </section> | |
| <section id="section-3"> | |
| <h1>Section 3</h1> | |
| </section> | |
| </div> | |
| </body> | |
| </html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment