Home › Forums › JavaScript › Change Body Border color on Scroll › Reply To: Change Body Border color on Scroll
March 11, 2014 at 4:47 am
#165381
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");
}
});