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.
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.
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.
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.
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.
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!
Sign up for Infrastructure as a Newsletter.
Working on improving health and education, reducing inequality, and spurring economic growth? We'd like to help.
Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.