“Onscroll Add Class JQuery” Respostas de código

Onscroll Add Class JQuery

$(window).scroll(function() {    
    var scroll = $(window).scrollTop();
    if (scroll >= 500) {
        $(".clearHeader").addClass("darkHeader");
    }
}); 
Joynal Abedin

JQuery Adicionar aula

$('some_element').addClass('some-class');

// You can add more than one class at one time
$('some_element').addClass('some-class another-class yet-another-class');

// Even thought jQuery allows you to do this
$('some_element').addClass('some-class').addClass('another-class').addClass('yet-another-class');

// That would be really wasteful, think of the planet!
// But more importantly, your RAM
// oh and those poor folks who be viewing your website
Kaotik

Respostas semelhantes a “Onscroll Add Class JQuery”

Perguntas semelhantes a “Onscroll Add Class JQuery”

Mais respostas relacionadas para “Onscroll Add Class JQuery” em JavaScript

Procure respostas de código populares por idioma

Procurar outros idiomas de código