├── .gitignore ├── README.md ├── doc ├── documentation.md └── plot.png ├── jquery.parallaxify.js ├── jquery.parallaxify.min.js ├── lib └── jquery.min.js └── src └── jquery.parallaxify.js /.gitignore: -------------------------------------------------------------------------------- 1 | _old 2 | demo -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwthorn/parallaxify/HEAD/README.md -------------------------------------------------------------------------------- /doc/documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwthorn/parallaxify/HEAD/doc/documentation.md -------------------------------------------------------------------------------- /doc/plot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwthorn/parallaxify/HEAD/doc/plot.png -------------------------------------------------------------------------------- /jquery.parallaxify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwthorn/parallaxify/HEAD/jquery.parallaxify.js -------------------------------------------------------------------------------- /jquery.parallaxify.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwthorn/parallaxify/HEAD/jquery.parallaxify.min.js -------------------------------------------------------------------------------- /lib/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwthorn/parallaxify/HEAD/lib/jquery.min.js -------------------------------------------------------------------------------- /src/jquery.parallaxify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hwthorn/parallaxify/HEAD/src/jquery.parallaxify.js --------------------------------------------------------------------------------