Skip to content

Instantly share code, notes, and snippets.

@stefanledin
Created October 15, 2017 11:04
Show Gist options
  • Select an option

  • Save stefanledin/4d0b4f5e24ac2e59840dbe7ee7e16afc to your computer and use it in GitHub Desktop.

Select an option

Save stefanledin/4d0b4f5e24ac2e59840dbe7ee7e16afc to your computer and use it in GitHub Desktop.
<!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