├── .gitignore ├── LICENSE ├── README.md ├── bower.json ├── dist ├── skrollr.decks.js └── skrollr.decks.min.js ├── gulpfile.js ├── index.html ├── package.json └── src └── skrollr.decks.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrySound/skrollr-decks/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrySound/skrollr-decks/HEAD/README.md -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrySound/skrollr-decks/HEAD/bower.json -------------------------------------------------------------------------------- /dist/skrollr.decks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrySound/skrollr-decks/HEAD/dist/skrollr.decks.js -------------------------------------------------------------------------------- /dist/skrollr.decks.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrySound/skrollr-decks/HEAD/dist/skrollr.decks.min.js -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrySound/skrollr-decks/HEAD/gulpfile.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrySound/skrollr-decks/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrySound/skrollr-decks/HEAD/package.json -------------------------------------------------------------------------------- /src/skrollr.decks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrySound/skrollr-decks/HEAD/src/skrollr.decks.js --------------------------------------------------------------------------------