$(window).scroll(function() {
var $height = $(window).scrollTop();
if($height > 2000) {
$('#header').addClass('active');
} else {
$('#header').removeClass('active');
}
});
Kaynak : https://codepen.io/fishtoyo/pen/PqEYjY
$(window).scroll(function() {
var $height = $(window).scrollTop();
if($height > 2000) {
$('#header').addClass('active');
} else {
$('#header').removeClass('active');
}
});