Oops!

404 - Página não foi encontrada

Voltar para o inicio
"#qtHpMpMookie("cart.quantity")); $("#qtdCarrinhoTopo2").text($.cookie("cart.quantity")); } else { $("#qtdCarrinhoTopo").text(""); $("#qtdCarrinhoTopo2").text(""); } // When the user scrolls the page, execute myFunction window.onscroll = function () { myFunction() }; // Get the header var header = document.getElementById("headerNavBar"); var navbarheader = document.getElementById("nav-mobile-header"); // Get the offset position of the navbar var sticky = 10; // Add the sticky class to the header when you reach its scroll position. Remove "sticky" when you leave the scroll position function myFunction() { if (window.pageYOffset > sticky) { header.classList.add("stickyHeader"); navbarheader.classList.add("fixed"); } else { header.classList.remove("stickyHeader"); navbarheader.classList.remove("fixed"); } }