KoderyBeta

Diagonal Background Scroll

Category: jQuery - Owner: PaulDavis - Owner ID: 1

Scrolls background up and left

This does slow down scrolling, and make it a bit jumpy.

$(window).unbind("scroll").scroll(function () {
	var a = Math.max(document.documentElement.scrollTop, document.body.scrollTop) / 10;
	var b = Math.max(document.documentElement.scrollTop, document.body.scrollTop) / 20;
	$("body").css({"background-position": -b + "px " + -a + "px"});
});