“klebrige Navigationsleiste auf Scrollen” Code-Antworten

Stick -Menüleiste in CSS

.navigation {
   /* fixed keyword is fine too */
   position: sticky;
   top: 0;
   z-index: 100;
   /* z-index works pretty much like a layer:
   the higher the z-index value, the greater
   it will allow the navigation tag to stay on top
   of other tags */
}
Muddy Macaw

CSS klebriger Navigatiojn

nav {
	position:sticky;
	top:0;
}

/*Top can be replaced with bottom, left, or right 
	depending on what you want :) */
kadealicious

klebrige Navigationsleiste auf Scrollen

// sticky Header js plugin
let w_out_sticky = document.querySelector(".w-out")// terget class or id
 // hear is  scroll logic
window.addEventListener('scroll', () => {
    window.scrollY > 300 ? w_out_sticky.classList.add("sticky") : w_out_sticky.classList.remove("sticky")
})
RENDER SMITH

Scrollen Sie zu einem Abschnitt, um auf das Sticky Navbar -Menü zu klicken. HTML CSS JS

$('html, body').animate({
  scrollTop: $("#section2").offset().top - $("#nav").height() // minus the nav height
}, 1000);
Sristi Saha

Ähnliche Antworten wie “klebrige Navigationsleiste auf Scrollen”

Fragen ähnlich wie “klebrige Navigationsleiste auf Scrollen”

Weitere verwandte Antworten zu “klebrige Navigationsleiste auf Scrollen” auf JavaScript

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen