├── .bowerrc ├── .firebaserc ├── .gitignore ├── .jshintrc ├── LICENSE ├── README.md ├── app ├── index.html ├── media │ ├── Logo_Rotator_LA.webm │ └── Logo_Rotator_Tokyo.webm ├── robots.txt ├── scripts │ ├── backupdata.js │ ├── dataloader.js │ ├── firebase.js │ ├── rotator.js │ └── uihelpers.js └── styles │ ├── _bgshapes.scss │ ├── _colorpalette.scss │ ├── _page.scss │ ├── _slides.scss │ ├── _uichrome.scss │ └── rotator.scss ├── art └── demo.gif ├── bower.json ├── firebase.json ├── gulpfile.js ├── package.json └── scripts └── pngs_to_webm.sh /.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": ".tmp/lib" 3 | } -------------------------------------------------------------------------------- /.firebaserc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/SPANRotator/HEAD/.firebaserc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/SPANRotator/HEAD/.gitignore -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/SPANRotator/HEAD/.jshintrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/SPANRotator/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/SPANRotator/HEAD/README.md -------------------------------------------------------------------------------- /app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/SPANRotator/HEAD/app/index.html -------------------------------------------------------------------------------- /app/media/Logo_Rotator_LA.webm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/SPANRotator/HEAD/app/media/Logo_Rotator_LA.webm -------------------------------------------------------------------------------- /app/media/Logo_Rotator_Tokyo.webm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/SPANRotator/HEAD/app/media/Logo_Rotator_Tokyo.webm -------------------------------------------------------------------------------- /app/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/SPANRotator/HEAD/app/robots.txt -------------------------------------------------------------------------------- /app/scripts/backupdata.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/SPANRotator/HEAD/app/scripts/backupdata.js -------------------------------------------------------------------------------- /app/scripts/dataloader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/SPANRotator/HEAD/app/scripts/dataloader.js -------------------------------------------------------------------------------- /app/scripts/firebase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/SPANRotator/HEAD/app/scripts/firebase.js -------------------------------------------------------------------------------- /app/scripts/rotator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/SPANRotator/HEAD/app/scripts/rotator.js -------------------------------------------------------------------------------- /app/scripts/uihelpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/SPANRotator/HEAD/app/scripts/uihelpers.js -------------------------------------------------------------------------------- /app/styles/_bgshapes.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/SPANRotator/HEAD/app/styles/_bgshapes.scss -------------------------------------------------------------------------------- /app/styles/_colorpalette.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/SPANRotator/HEAD/app/styles/_colorpalette.scss -------------------------------------------------------------------------------- /app/styles/_page.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/SPANRotator/HEAD/app/styles/_page.scss -------------------------------------------------------------------------------- /app/styles/_slides.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/SPANRotator/HEAD/app/styles/_slides.scss -------------------------------------------------------------------------------- /app/styles/_uichrome.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/SPANRotator/HEAD/app/styles/_uichrome.scss -------------------------------------------------------------------------------- /app/styles/rotator.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/SPANRotator/HEAD/app/styles/rotator.scss -------------------------------------------------------------------------------- /art/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/SPANRotator/HEAD/art/demo.gif -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/SPANRotator/HEAD/bower.json -------------------------------------------------------------------------------- /firebase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/SPANRotator/HEAD/firebase.json -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/SPANRotator/HEAD/gulpfile.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/SPANRotator/HEAD/package.json -------------------------------------------------------------------------------- /scripts/pngs_to_webm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romannurik/SPANRotator/HEAD/scripts/pngs_to_webm.sh --------------------------------------------------------------------------------