├── README.md ├── bower.json ├── example ├── app.js ├── css │ └── style.css ├── images │ ├── cloud-pattern.jpg │ ├── grey-pattern.png │ └── rain-pattern.png └── index.html ├── package.json └── src ├── ngParallax.js └── ngParallax.min.js /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenJynRoyston/ng-parallax/HEAD/README.md -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenJynRoyston/ng-parallax/HEAD/bower.json -------------------------------------------------------------------------------- /example/app.js: -------------------------------------------------------------------------------- 1 | var app = angular.module('myApp', ['ngParallax']); 2 | -------------------------------------------------------------------------------- /example/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenJynRoyston/ng-parallax/HEAD/example/css/style.css -------------------------------------------------------------------------------- /example/images/cloud-pattern.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenJynRoyston/ng-parallax/HEAD/example/images/cloud-pattern.jpg -------------------------------------------------------------------------------- /example/images/grey-pattern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenJynRoyston/ng-parallax/HEAD/example/images/grey-pattern.png -------------------------------------------------------------------------------- /example/images/rain-pattern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenJynRoyston/ng-parallax/HEAD/example/images/rain-pattern.png -------------------------------------------------------------------------------- /example/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenJynRoyston/ng-parallax/HEAD/example/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenJynRoyston/ng-parallax/HEAD/package.json -------------------------------------------------------------------------------- /src/ngParallax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenJynRoyston/ng-parallax/HEAD/src/ngParallax.js -------------------------------------------------------------------------------- /src/ngParallax.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenJynRoyston/ng-parallax/HEAD/src/ngParallax.min.js --------------------------------------------------------------------------------