“липкая навигационная планка на свитке” Ответ

Бар меню палки в 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 Sticky Navigatiojn

nav {
	position:sticky;
	top:0;
}

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

липкая навигационная планка на свитке

// 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

Прокрутите в разделе «Нажмите на меню" Нажмите на липкий Navbar Html CSS JS

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

Ответы похожие на “липкая навигационная планка на свитке”

Вопросы похожие на “липкая навигационная планка на свитке”

Больше похожих ответов на “липкая навигационная планка на свитке” по JavaScript

Смотреть популярные ответы по языку

Смотреть другие языки программирования