mirror of
https://github.com/GenderDysphoria/GenderDysphoria.fyi.git
synced 2025-01-31 07:16:17 +00:00
11 lines
241 B
JavaScript
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;
|
||
|
}
|
||
|
});
|
||
|
});
|