
simplax is a pure Javascript solution to create background image parallax effect when you scroll the web page.
How to use it:
Add a background image to your document body in CSS.
body { background: url('demo.jpg'); }Add the parallax scrolling effect to the background image with a little Javascript.
window.onload=function(){
document.body.style.backgroundAttachment="fixed";
window.onscroll=function () {
document.body.style.backgroundPosition = "0px " + (0 + (Math.max(document.documentElement.scrollTop, document.body.scrollTop) / 8)) + "px";
}
}






