├── .gitignore ├── LICENCE ├── README.md ├── bower.json ├── dist ├── smooth-parallax.js └── smooth-parallax.min.js ├── gulpfile.js ├── package.json ├── src └── smooth-parallax-src.js └── test.html /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .sass-cache 3 | bower_components 4 | .DS_Store 5 | -------------------------------------------------------------------------------- /LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diegoversiani/smooth-parallax/HEAD/LICENCE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diegoversiani/smooth-parallax/HEAD/README.md -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diegoversiani/smooth-parallax/HEAD/bower.json -------------------------------------------------------------------------------- /dist/smooth-parallax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diegoversiani/smooth-parallax/HEAD/dist/smooth-parallax.js -------------------------------------------------------------------------------- /dist/smooth-parallax.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diegoversiani/smooth-parallax/HEAD/dist/smooth-parallax.min.js -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diegoversiani/smooth-parallax/HEAD/gulpfile.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diegoversiani/smooth-parallax/HEAD/package.json -------------------------------------------------------------------------------- /src/smooth-parallax-src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diegoversiani/smooth-parallax/HEAD/src/smooth-parallax-src.js -------------------------------------------------------------------------------- /test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diegoversiani/smooth-parallax/HEAD/test.html --------------------------------------------------------------------------------