Last active
November 3, 2020 23:31
-
-
Save jgatjens/fc091e61a86eb62a9020a8fa1e4b042e to your computer and use it in GitHub Desktop.
Javascript scroll sticky navigation
This file contains 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
.ex-pinned-nav--component { | |
height: 400px; | |
background-color: #e7e7e7; | |
} | |
.pinned-nav--section { | |
height: 400px; | |
background-color: azure; | |
} | |
.pinned-nav--section:nth-child(even) { | |
background-color: tomato; | |
} | |
.ni__pinned-nav--container { | |
width: 100%; | |
background-color: var(--white-three); | |
padding-top: 26px; | |
} | |
.ni__pinned-nav--container.is-nav--sticky { | |
position: fixed; | |
top: 0; | |
z-index: 100; | |
} |
This file contains 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
<section class="ex-pinned-nav--component"></section> | |
<div class="ni__pinned-nav--container"> | |
<nav class="ni__pinned-nav"> | |
<a class="ni__in-page-nav--1 is-active" href="#pinned-nav-systems">Systems</a> | |
<a class="ni__in-page-nav--1" href="#pinned-nav-hardware">Hardware</a> | |
<a class="ni__in-page-nav--1" href="#pinned-nav-software">Software</a> | |
<a class="ni__in-page-nav--1" href="#pinned-nav-services">Services</a> | |
</nav> | |
</div> | |
<section class="pinned-nav--section" id="pinned-nav-systems"></section> | |
<section class="pinned-nav--section" id="pinned-nav-hardware"></section> | |
<section class="pinned-nav--section" id="pinned-nav-software"></section> | |
<section class="pinned-nav--section" id="pinned-nav-services"></section> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment