├── .editorconfig ├── .gitignore ├── .jscs.json ├── .jshintrc ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE-MIT ├── README.md ├── bower.json ├── gulpfile.js ├── package.json └── src ├── index.html └── parallaxify.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoOx/parallaxify/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules/ 3 | -------------------------------------------------------------------------------- /.jscs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoOx/parallaxify/HEAD/.jscs.json -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoOx/parallaxify/HEAD/.jshintrc -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoOx/parallaxify/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoOx/parallaxify/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoOx/parallaxify/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoOx/parallaxify/HEAD/README.md -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoOx/parallaxify/HEAD/bower.json -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoOx/parallaxify/HEAD/gulpfile.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoOx/parallaxify/HEAD/package.json -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoOx/parallaxify/HEAD/src/index.html -------------------------------------------------------------------------------- /src/parallaxify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoOx/parallaxify/HEAD/src/parallaxify.js --------------------------------------------------------------------------------