GenderDysphoria.fyi/js/_header.js
Jocelyn Badgley (Twipped) 1c45fdaf33 Initial site commit
2020-02-20 14:38:25 -08:00

11 lines
241 B
JavaScript

$(function () {
let active = false;
window.addEventListener('scroll', function () {
const state = window.scrollY > 10;
if (active !== state) {
$('header').toggleClass('active', state);
active = state;
}
});
});