// Tutorial //

Parallax Effect in Vue.js

Published on July 9, 2018
Default avatar

By Alex Jover Morales

Parallax Effect in Vue.js

While we believe that this content benefits our community, we have not yet thoroughly reviewed it. If you have any suggestions for improvements, please let us know by clicking the “report an issue“ button at the bottom of the tutorial.

As a frontend developer you often need to create different kind of interactions and animations, such as parallax: an effect that makes a background image scroll slower so it gives the illusion that it is deeper in the screen.

We’ve already shown you how you can do it using plain CSS, but if you don’t want to go that path and you’re using Vue.js for your app, it can be simpler.

That’s where vue-parallaxy comes into play by giving you a component that takes care of the parallax effect for you.

Simple Demo

First of all, you need to install vue-parallaxy by running the following command:

$ npm install vue-parallaxy

# or, using Yarn
$ yard add vue-parallaxy

Since vue-parallaxy is a component, you need to import it where you need it, just as any other component:

import Parallax from "vue-parallaxy";

export default {
  components: {
    Parallax
  }
};

Finally, you just need to pass an image to the component:

<parallax>
  <img src="https://images.pexels.com/photos/132037/pexels-photo-132037.jpeg">
</parallax>

Since it works by using slots, you can also pass a <picture> element or an image with src-set attributes.

Options

vue-parallaxy gives you different options to customize its behavior which you can pass via props.

The speedFactor is a factor value that determines how aggressive the effect is. Its range is from 0 (no parallax) to 1 (most aggressive), 0.15 being the default:

<parallax :speed-factor="0.3">
  <img src="https://images.pexels.com/photos/132037/pexels-photo-132037.jpeg">
</parallax>

An interesting fact is that by default the parallax effect is disabled on mobile. That’s determined by a breakpoint property that defaults to (min-width: 968px), so if you want to make it work on smaller screens, you can set it to a smaller value:

<parallax :speed-factor="0.3" breakpoint="(min-width: 80px)">
  <img src="https://images.pexels.com/photos/132037/pexels-photo-132037.jpeg">
</parallax>

You can see the full props API in the documentation.

Wrapping Up

You’ve seen how to create parallax effects in a Vue application using vue-parallaxy and some examples for customizing its behavior.

Additionally, you can see the code and a demo for this article in this codesandbox.

Thanks for learning with the DigitalOcean Community. Check out our offerings for compute, storage, networking, and managed databases.

Learn more about us


Want to learn more? Join the DigitalOcean Community!

Join our DigitalOcean community of over a million developers for free! Get help and share knowledge in our Questions & Answers section, find tutorials and tools that will help you grow as a developer and scale your project or business, and subscribe to topics of interest.

Sign up now
About the authors
Default avatar
Alex Jover Morales

author

Still looking for an answer?

Ask a questionSearch for more help

Was this helpful?
 
Leave a comment
Leave a comment...

This textbox defaults to using Markdown to format your answer.

You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!

Try DigitalOcean for free

Click here to sign up and get $200 of credit to try our products over 60 days!
Try DigitalOcean for free