├── .gitignore ├── LICENSE ├── README.md ├── bower.json ├── demo └── index.html ├── index.html ├── parallax-container.html ├── parallax-group.html ├── parallax-layer.html └── test ├── basic-test.html └── index.html /.gitignore: -------------------------------------------------------------------------------- 1 | bower_components 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winhowes/parallax-container/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winhowes/parallax-container/HEAD/README.md -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winhowes/parallax-container/HEAD/bower.json -------------------------------------------------------------------------------- /demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winhowes/parallax-container/HEAD/demo/index.html -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winhowes/parallax-container/HEAD/index.html -------------------------------------------------------------------------------- /parallax-container.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winhowes/parallax-container/HEAD/parallax-container.html -------------------------------------------------------------------------------- /parallax-group.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winhowes/parallax-container/HEAD/parallax-group.html -------------------------------------------------------------------------------- /parallax-layer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winhowes/parallax-container/HEAD/parallax-layer.html -------------------------------------------------------------------------------- /test/basic-test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winhowes/parallax-container/HEAD/test/basic-test.html -------------------------------------------------------------------------------- /test/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winhowes/parallax-container/HEAD/test/index.html --------------------------------------------------------------------------------