I try to start the background image and stay in a fixed position, but only until the rest of the "content" of the page is complete, after which the full image will be shown.
I am working on a purely CSS solution. I should note that the image is larger than most (laptop) screens.
In particular, the code I used here is used:
body { background:$bgcolor; background-image:url('http://i.imgur.com/cIGSehG.jpg'); background-repeat:no-repeat; background-position:0px 72px; background-attachment:fixed; margin:0; ... }
The image I'm using is shown in url() :

The effect I'm looking for will mainly display only about 10% of the grass hill, while you look at most of the page, but if you finally scroll all the way to the contents of the page, the remaining 90% of the grass hill will be shown.
I could not find it anywhere, but I may have simply used bad search terms, since I am not very familiar with jargon.
source share