Line 1,149: | Line 1,149: | ||
}); | }); | ||
− | window.onscroll = function() { | + | window.onscroll = function() {myFunction()}; |
− | + | ||
− | + | ||
− | + | ||
− | + | ||
+ | function myFunction() { | ||
+ | if (document.body.scrollTop > 50 || document.documentElement.scrollTop > 50) { | ||
+ | element.classList.remove("ul li a"); | ||
+ | document.getElementById("navigation").className = ".test"; | ||
+ | } else { | ||
+ | element.classList.remove(".test"); | ||
+ | document.getElementById("navigation").className = ""; | ||
+ | } | ||
+ | } | ||
</script> | </script> | ||
</html> | </html> |
Revision as of 13:37, 21 September 2018