Hit enter after type your search item

jQuery parallax scrolling effect with 3d translate (CSS3): 2 examples

The 3D parallax scrolling effect by using jQuery

In this tutorial, I will show you how to create the parallax scrolling effect on any content type by using a jQuery-based parallax plug-in, parallux.

FYI, if you have not heard of this earlier, the parallax effect is the one where foreground moves faster than the background. In the background, generally 3D images are used.

Demo1 Demo2

The parallux plug-in uses translate 3D which is a CSS3 property. Due to this, you may use different types of content like images, videos, text, sliders etc in the background layer (rather than only images).

See the following section for the live demos and how to set up this plug-in for your website.

A demo of jQuery parallax effect

The plug-in has options to use both layers i.e. foreground and background. For giving scrolling a normal speed, use the foreground layer. For parallax effect, use the background layer.

Other Parallax plug-ins
Create Parallax Tilt effect plug-in: Read here

In this demo, images are used as background for parallax scrolling. With each background image, the content for the foreground, which is a heading and some text is used. Have a look at the demo which is followed by setting up the dependencies and running this in your web pages (get the plug-in from the link given at bottom or by view source the demo page and download JS and CSS files):

parallax scrolling

See online demo and code

For setting up this scrolling parallax, first include the main CSS file in the <head> section. The CSS specific to this demo is also included here:

 <link rel=”stylesheet” href=”https://cdnjs.cloudflare.com/ajax/libs/normalize/4.1.1/normalize.min.css”>

<link href=’http://fonts.googleapis.com/css?family=Roboto:400,900,300′ rel=’stylesheet’ type=’text/css’>

<!– Main CSS file of the plug-in –>

<link rel=”stylesheet” href=”css/jquery.parallux/jquery.parallux.min.css”>

<!– The style file particular to this demo –>

<link rel=”stylesheet” href=”css/jquery.parallux/demos.css”>

The markup:

  • First of all, a parallax item is created by using the parallux CSS class. After that, the background layer is specified by using parallux-bg fixed
  • Inside that, another div tag is used for placing the HTML content for the background layer. You may place image, video or other HTML content there that will scroll slowly.
  • After that div tag, a div with text CSS class is created for the foreground layer.

Above the </body> tag, place the jQuery and plug-in JS files with jQuery code for initiating the parallax:

<script src=”https://ajax.googleapis.com/ajax/libs/jquery/1.12.3/jquery.min.js”></script>


 

That’s it. Get the complete code from the demo page at the bottom part.

Another demo with different style

In this demo, three images are used as background that is adjacent to each other and takes full height (specified in the jQuery code by using fullHeight option of the plug-in)

parallax effect

See online demo and code

 

The images in this demo are specified in the CSS file that is referred by ID in the div using parallux-inner class. The markup for creating the parallax effect:

 


 

The script:


 

The code can be taken from the demo page’s bottom part.

 

Credit: tomsarduy

This div height required for enabling the sticky sidebar