BlogsDope image BlogsDope

Fixed Background Scrolling Effect using CSS

Nov. 4, 2018 CSS ANIMATION BACKGROUND SCROLL 69170

A lot of dynamic effects can be given in web projects using just CSS. One such effect is keeping background fixed as foreground moves on scrolling. It can be achieved using a single CSS property - background-attachment.

Look at the following demo in which the backgrounds of different sections of a web page are fixed while their contents move on scrolling.

fixed background scrolling

The code to create the effect shown in the demo is explained below in steps.

The Structure

The HTML consists of five sections. The first, third and fifth sections are given images as background that do not scroll when their contents scroll, and the second and fourth sections are given background colors. All these sections are wrapped within a div.

HTML

<div class="wrapper"> <!-- wrapper div starts -->
  
  <div class="fixed-bg bg-1">
    <h1>Fixed Background scrolling</h1>
  </div>
  
  <div class="scroll-bg">
    <h3>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec in dolor tempor, posuere mi id, eleifend magna. Nulla at lectus magna. Etiam sodales arcu at lectus porttitor accumsan. Orci varius natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Curabitur id urna dolor. Orci varius natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Proin et pharetra justo, quis suscipit risus. Maecenas tincidunt efficitur ex in pharetra.</h3>
  </div>
  
  <div class="fixed-bg bg-2">
    <h1>Fixed Background scrolling</h1>
  </div>
  
  <div class="scroll-bg">
    <h3>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec in dolor tempor, posuere mi id, eleifend magna. Nulla at lectus magna.</h3>
  </div>
  
  <div class="fixed-bg bg-3">
    <h1>Fixed Background scrolling</h1>
  </div>
  
</div> <!-- wrapper div ends-->

The Styling

Step 1

In the demo, I wanted the height of the first, third and fifth sections same as the height of the viewport. For this, height: 100% is given to the three sections and all their ancestors (.fixed-bg -> .wrapper -> body -> html).

CSS

html,body {
  height: 100%;
}

.wrapper {
  height: 100%;
}

.fixed-bg {
  height: 100%; 
}

If you give a fixed height to these three sections, then there is no need to give height to their ancestors.

Step 2

Background images are given to the first, third and fifth sections and background color to the remaining two sections.

The background images are given the respective background properties to make them not repeatable, cover the background area and positioned at the center. Giving background-attachment: fixed prevents them from scrolling with the content. This is the key step for our scrolling effect.

CSS

.fixed-bg {
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.scroll-bg {
  background-color: #0f0f0a;
}

/* first section */

.bg-1 {
  background-image: url('../bg1.jpg');
}

/* third section */

.bg-2 {
  background-image: url('../bg2.jpg');
}

/* fifth section */

.bg-3 {
  background-image: url('../bg3.jpg');
}

Step 3

The last step is styling the content of the five sections.

The font type, space between lines of text, letter spacing and word spacing are specified by using the font-familyline-heightword-spacing and letter-spacing properties for the wrapper div.

CSS

@import url('https://fonts.googleapis.com/css?family=Quicksand');

.wrapper {
  font-family: 'Quicksand', sans-serif;
  line-height: 1.5;
  word-spacing: 4px;
  letter-spacing: 1px;
}

.fixed-bg {
  color: white;
}

.scroll-bg {
  padding: 10px 70px;
  color: #676767;
}

The contents of the first, third and fifth sections are center aligned horizontally using the text-align property and vertically using the vertical-align and display properties.

CSS

.fixed-bg {
  width: 100%;
  text-align: center;
  display: table;
}

.fixed-bg h1 {
  display: table-cell;
  vertical-align: middle;
}

Conclusion

Backgrounds have always been an indispensable part of web pages. Any web page can be made more lively by doing just a slight change in the way its background appears. For example, you can give a video as background or can apply various effects and animations to it. Apart from making the background fixed as shown in this post, you can give lots of parallax effects in your web pages which make the background scroll at a slower speed as compared to its content. Come up with your own ideas on applying this effect.


Liked the post?
Inquisitive and passionate Front-end Developer and Web Designer and Co-Founder of CodesDope.
Editor's Picks
0 COMMENT

Please login to view or add comment(s).