Root Zanli
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
o5t6x7pgljbm
/
public_html
/
tuitioncoin.org
/
assets
/
js
/
src
/
components
/
Filename :
parallax.js
back
Copy
/** * Mouse move parallax effect * @requires https://github.com/wagerfield/parallax */ const parallax = (() => { let element = document.querySelectorAll('.parallax'); for (let i = 0; i < element.length; i++) { let parallaxInstance = new Parallax(element[i]); } })(); export default parallax;