├── .gitignore ├── .npmignore ├── README.md ├── dev └── basic.vue ├── karma.conf.coffee ├── package.json ├── src └── parallax.vue └── test └── parallax.coffee /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vue-comps/vue-parallax/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vue-comps/vue-parallax/HEAD/.npmignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vue-comps/vue-parallax/HEAD/README.md -------------------------------------------------------------------------------- /dev/basic.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vue-comps/vue-parallax/HEAD/dev/basic.vue -------------------------------------------------------------------------------- /karma.conf.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vue-comps/vue-parallax/HEAD/karma.conf.coffee -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vue-comps/vue-parallax/HEAD/package.json -------------------------------------------------------------------------------- /src/parallax.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vue-comps/vue-parallax/HEAD/src/parallax.vue -------------------------------------------------------------------------------- /test/parallax.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vue-comps/vue-parallax/HEAD/test/parallax.coffee --------------------------------------------------------------------------------