Это мой JS:
Код: Выделить всё
window.onscroll = function() {scrollFunction()};
function scrollFunction() {
if (window.screen.width > 780) {
if (document.body.scrollTop > 50 || document.documentElement.scrollTop > 50) {
var element = document.getElementById("headbar");
element.classList.remove("show");
element.classList.add("hide");
} else {
var element = document.getElementById("headbar");
element.classList.remove("hide");
element.classList.add("show");
}
}
}
Код: Выделить всё
#headbar {
transition: all .5s;
}
.hide {
opacity:0;
transition: all .5s;
}
.show {
opacity:1;
transition: all .5s;
}
Подробнее здесь: https://stackoverflow.com/questions/784 ... -wordpress
Мобильная версия