Skip to content
Related Articles
Get the best out of our app
GeeksforGeeks App
Open App
geeksforgeeks
Browser
Continue

Related Articles

Parallax scrolling effect using CSS.

Improve Article
Save Article
Like Article
Improve Article
Save Article
Like Article

Parallax
Parallax is a 3d effect used in various websites to make webpages attractive. In this effect, as we scroll, the background of the webpages moves at a different speed than the foreground making it look brilliant to the eyes.

Examples:
These websites show the parallax effect brilliantly-

This effect is a great visual but an easy method to implement with the help of CSS.
First, let us understand what is happening in the given examples.
The effect is created because the image in the background is kept fixed with no movement but other images are moving. This simple technique makes this effect look brilliant.
Now let us see the implementation of this effect using CSS-
Explanation
1. background-attachment
This property is used to determine whether a background image is fixed or scroll with the page.

Syntax : background-attachment: scroll/fixed/local;

2. background-position
This property determines the starting position of the background image.

Syntax : background-position: value;

3. background-repeat
This property determines whether a background image will repeat or not and if repeated , how will it be repeated.

Syntax : background-repeat: repeat/repeat-x/repeat-y/no-repeat;

repeat – The background image will be repeated both vertically and horizontally.
repeat-x – The background image will be repeated only horizontally.
repeat-y – The background image will be repeated only vertically.
no-repeat – The background-image will not be repeated.

4. background-size
This property determines the size of the background image.

Syntax : background-size: auto/length/cover/contain/;

auto – Default value.
length – Sets the width and height of the background image.
percentage – Sets the width and height of the background image in percent of the container element.
cover – Scale the background image to be as large as possible so that the background area is completely covered by the background image.
contain – Scale the image to the largest size such that both its width and its height can fit inside the content area.




<html>
<head>
<style>
.parallax {
    min-height: 500px
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
</style>
</head>
<body>
<p>This is a Parallax</p>
<div class="parallax"></div>
<div style="height:1000px;font-size:60px;">
<center>Hi</center>
</div>
</body>
</html>

Output:


Note that This parallax effect does not always work with mobiles and tablets, so you need to turn off the effect using media queries.

This article is contributed by Ayush Saxena. If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.

Please write comments if you find anything incorrect, or you want to share more information about the topic discussed above.


My Personal Notes arrow_drop_up
Last Updated : 16 Mar, 2021
Like Article
Save Article
Similar Reads
Related Tutorials