npm.io
1.0.0 • Published 6 years ago

@fnndk/parallax-vue

Licence
MIT
Version
1.0.0
Deps
2
Size
37 kB
Vulns
1
Weekly
0

parallax-vue

A Vue.js wrapper for Parallax.js

Install

# install package
npm install https://github.com/FnnDK/parallax-vue --save

# Register the component

import Vue from 'vue'
import Parallax from 'parallax-vue'
Vue.component('parallax', Parallax)

# In HTML
<parallax>
	<img data-depth="0.4" src="bg.png"/>
	<img data-depth="0.2" src="secondElement.png"/>
	<img data-depth="0.1" src="firstElement.png"/>
</parallax>