Posts

Showing posts with the label Parallax

(CSS) Make A Background Image Scroll Slower Than Everything Else

Answer : I stumbled upon this looking for more flexibility in my parallax speed that I have created with pure CSS and I just want to point out that all these people are wrong and it is possible with pure CSS It is also possible to control the height of your element better. You will probably have to edit your DOM/HTML a bit to have some container elements, in your case you are applying the background to the body which will restrict you a lot and doesn't seem like a good idea. http://keithclark.co.uk/articles/pure-css-parallax-websites/ Here is how you control the height with Viewport-percentage lenghts based on screen size: https://stanhub.com/how-to-make-div-element-100-height-of-browser-window-using-css-only/ .forefront-element { -webkit-transform: translateZ(999px) scale(.7); transform: translateZ(999px) scale(.7); z-index: 1; } .base-element { -webkit-transform: translateZ(0); transform: translateZ(0); z-index: 4; } .background-element { ...