Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums JavaScript Change Body Border color on Scroll Reply To: Change Body Border color on Scroll

#165381
Paulie_D
Member

Jquery can do the background change simply with a short function.

I admit that it only works for one value at the moment but my JQ skills are poor so adding another scroll change is beyond me at the moment.

Codepen: http://codepen.io/Paulie-D/pen/rjJcB

$(window).scroll(function() {    
    var scroll = $(window).scrollTop();

    if (scroll >= 200) {
        $("body").addClass("blue");
    } else {
        $("body").removeClass("blue");
    }
});