├── .gitignore ├── LICENSE ├── README.md ├── absolute.html ├── bower.json ├── css ├── bootstrap.min.css └── main.css ├── demo.html ├── option.js ├── package.json ├── rellax.js ├── rellax.min.js └── tests ├── center.html ├── destroy.html ├── directions.html ├── horizontal.html ├── percentage.html ├── range.html ├── responsive-speeds.html ├── speed.html ├── style.html └── wrapper.html /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dixonandmoe/rellax/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dixonandmoe/rellax/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dixonandmoe/rellax/HEAD/README.md -------------------------------------------------------------------------------- /absolute.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dixonandmoe/rellax/HEAD/absolute.html -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dixonandmoe/rellax/HEAD/bower.json -------------------------------------------------------------------------------- /css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dixonandmoe/rellax/HEAD/css/bootstrap.min.css -------------------------------------------------------------------------------- /css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dixonandmoe/rellax/HEAD/css/main.css -------------------------------------------------------------------------------- /demo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dixonandmoe/rellax/HEAD/demo.html -------------------------------------------------------------------------------- /option.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dixonandmoe/rellax/HEAD/option.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dixonandmoe/rellax/HEAD/package.json -------------------------------------------------------------------------------- /rellax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dixonandmoe/rellax/HEAD/rellax.js -------------------------------------------------------------------------------- /rellax.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dixonandmoe/rellax/HEAD/rellax.min.js -------------------------------------------------------------------------------- /tests/center.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dixonandmoe/rellax/HEAD/tests/center.html -------------------------------------------------------------------------------- /tests/destroy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dixonandmoe/rellax/HEAD/tests/destroy.html -------------------------------------------------------------------------------- /tests/directions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dixonandmoe/rellax/HEAD/tests/directions.html -------------------------------------------------------------------------------- /tests/horizontal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dixonandmoe/rellax/HEAD/tests/horizontal.html -------------------------------------------------------------------------------- /tests/percentage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dixonandmoe/rellax/HEAD/tests/percentage.html -------------------------------------------------------------------------------- /tests/range.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dixonandmoe/rellax/HEAD/tests/range.html -------------------------------------------------------------------------------- /tests/responsive-speeds.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dixonandmoe/rellax/HEAD/tests/responsive-speeds.html -------------------------------------------------------------------------------- /tests/speed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dixonandmoe/rellax/HEAD/tests/speed.html -------------------------------------------------------------------------------- /tests/style.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dixonandmoe/rellax/HEAD/tests/style.html -------------------------------------------------------------------------------- /tests/wrapper.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dixonandmoe/rellax/HEAD/tests/wrapper.html --------------------------------------------------------------------------------