javascript - Center website background on the screen? -


I have seen this move on many websites and I want to make it for my own project.
I is an image background.jpg which is too large, just be ready for any screen size.
I want to focus background image on visitor's window.
I mean, while scrolling window content will move forward but will remain in the background - centric vertically and horizontally.

Most of the BTW viewers have an old computer, so it will not be better if it will be JS.

  body {background-image: url ('background.jpg'); Repeat Background: No Repetition; / * You know ... do not repeat ... * / background-position: center center; / * Center background * / background-attachment: fixed; / * Do not scroll with content * /}    

Comments