├── .editorconfig ├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── Gruntfile.js ├── README.md ├── assets ├── 1.png ├── 10.png ├── 11.png ├── 12.png ├── 13.png ├── 14.png ├── 15.png ├── 16.png ├── 17.png ├── 18.png ├── 19.png ├── 2.png ├── 20.png ├── 21.png ├── 22.png ├── 23.png ├── 24.png ├── 25.png ├── 26.png ├── 27.png ├── 28.png ├── 29.png ├── 3.png ├── 30.png ├── 31.png ├── 32.png ├── 33.png ├── 34.png ├── 35.png ├── 36.png ├── 360.png ├── 360_icon.png ├── 37.png ├── 38.png ├── 39.png ├── 4.png ├── 40.png ├── 41.png ├── 42.png ├── 43.png ├── 44.png ├── 45.png ├── 46.png ├── 47.png ├── 48.png ├── 49.png ├── 5.png ├── 50.png ├── 51.png ├── 52.png ├── 6.png ├── 7.png ├── 8.png ├── 9.png ├── browser_logos-64.png ├── fs.png └── sprites.png ├── bower.json ├── dist └── threesixty.min.js ├── package.json ├── src ├── images │ ├── 360.png │ ├── browser_logos-64.png │ └── fs.png ├── plugins │ └── threesixty.fullscreen.js ├── styles │ ├── threesixty.css │ └── threesixty.less └── threesixty.js └── tests ├── default.html └── default.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativeaura/threesixty-slider/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativeaura/threesixty-slider/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativeaura/threesixty-slider/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativeaura/threesixty-slider/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativeaura/threesixty-slider/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativeaura/threesixty-slider/HEAD/README.md -------------------------------------------------------------------------------- /assets/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativeaura/threesixty-slider/HEAD/assets/1.png -------------------------------------------------------------------------------- /assets/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativeaura/threesixty-slider/HEAD/assets/10.png -------------------------------------------------------------------------------- /assets/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativeaura/threesixty-slider/HEAD/assets/11.png -------------------------------------------------------------------------------- /assets/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativeaura/threesixty-slider/HEAD/assets/12.png -------------------------------------------------------------------------------- /assets/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativeaura/threesixty-slider/HEAD/assets/13.png -------------------------------------------------------------------------------- /assets/14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativeaura/threesixty-slider/HEAD/assets/14.png -------------------------------------------------------------------------------- /assets/15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativeaura/threesixty-slider/HEAD/assets/15.png -------------------------------------------------------------------------------- /assets/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativeaura/threesixty-slider/HEAD/assets/16.png -------------------------------------------------------------------------------- /assets/17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativeaura/threesixty-slider/HEAD/assets/17.png -------------------------------------------------------------------------------- /assets/18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativeaura/threesixty-slider/HEAD/assets/18.png -------------------------------------------------------------------------------- /assets/19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativeaura/threesixty-slider/HEAD/assets/19.png -------------------------------------------------------------------------------- /assets/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativeaura/threesixty-slider/HEAD/assets/2.png -------------------------------------------------------------------------------- /assets/20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativeaura/threesixty-slider/HEAD/assets/20.png -------------------------------------------------------------------------------- /assets/21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativeaura/threesixty-slider/HEAD/assets/21.png -------------------------------------------------------------------------------- /assets/22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativeaura/threesixty-slider/HEAD/assets/22.png -------------------------------------------------------------------------------- /assets/23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativeaura/threesixty-slider/HEAD/assets/23.png -------------------------------------------------------------------------------- /assets/24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativeaura/threesixty-slider/HEAD/assets/24.png -------------------------------------------------------------------------------- /assets/25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativeaura/threesixty-slider/HEAD/assets/25.png -------------------------------------------------------------------------------- /assets/26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativeaura/threesixty-slider/HEAD/assets/26.png -------------------------------------------------------------------------------- /assets/27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativeaura/threesixty-slider/HEAD/assets/27.png -------------------------------------------------------------------------------- /assets/28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativeaura/threesixty-slider/HEAD/assets/28.png -------------------------------------------------------------------------------- /assets/29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativeaura/threesixty-slider/HEAD/assets/29.png -------------------------------------------------------------------------------- /assets/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativeaura/threesixty-slider/HEAD/assets/3.png -------------------------------------------------------------------------------- /assets/30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativeaura/threesixty-slider/HEAD/assets/30.png -------------------------------------------------------------------------------- /assets/31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativeaura/threesixty-slider/HEAD/assets/31.png -------------------------------------------------------------------------------- /assets/32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativeaura/threesixty-slider/HEAD/assets/32.png -------------------------------------------------------------------------------- /assets/33.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativeaura/threesixty-slider/HEAD/assets/33.png -------------------------------------------------------------------------------- /assets/34.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativeaura/threesixty-slider/HEAD/assets/34.png -------------------------------------------------------------------------------- /assets/35.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativeaura/threesixty-slider/HEAD/assets/35.png -------------------------------------------------------------------------------- /assets/36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativeaura/threesixty-slider/HEAD/assets/36.png -------------------------------------------------------------------------------- /assets/360.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativeaura/threesixty-slider/HEAD/assets/360.png -------------------------------------------------------------------------------- /assets/360_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativeaura/threesixty-slider/HEAD/assets/360_icon.png -------------------------------------------------------------------------------- /assets/37.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativeaura/threesixty-slider/HEAD/assets/37.png -------------------------------------------------------------------------------- /assets/38.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativeaura/threesixty-slider/HEAD/assets/38.png -------------------------------------------------------------------------------- /assets/39.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativeaura/threesixty-slider/HEAD/assets/39.png -------------------------------------------------------------------------------- /assets/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativeaura/threesixty-slider/HEAD/assets/4.png -------------------------------------------------------------------------------- /assets/40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativeaura/threesixty-slider/HEAD/assets/40.png -------------------------------------------------------------------------------- /assets/41.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativeaura/threesixty-slider/HEAD/assets/41.png -------------------------------------------------------------------------------- /assets/42.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativeaura/threesixty-slider/HEAD/assets/42.png -------------------------------------------------------------------------------- /assets/43.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativeaura/threesixty-slider/HEAD/assets/43.png -------------------------------------------------------------------------------- /assets/44.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativeaura/threesixty-slider/HEAD/assets/44.png -------------------------------------------------------------------------------- /assets/45.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativeaura/threesixty-slider/HEAD/assets/45.png -------------------------------------------------------------------------------- /assets/46.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativeaura/threesixty-slider/HEAD/assets/46.png -------------------------------------------------------------------------------- /assets/47.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativeaura/threesixty-slider/HEAD/assets/47.png -------------------------------------------------------------------------------- /assets/48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativeaura/threesixty-slider/HEAD/assets/48.png -------------------------------------------------------------------------------- /assets/49.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativeaura/threesixty-slider/HEAD/assets/49.png -------------------------------------------------------------------------------- /assets/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativeaura/threesixty-slider/HEAD/assets/5.png -------------------------------------------------------------------------------- /assets/50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativeaura/threesixty-slider/HEAD/assets/50.png -------------------------------------------------------------------------------- /assets/51.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativeaura/threesixty-slider/HEAD/assets/51.png -------------------------------------------------------------------------------- /assets/52.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativeaura/threesixty-slider/HEAD/assets/52.png -------------------------------------------------------------------------------- /assets/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativeaura/threesixty-slider/HEAD/assets/6.png -------------------------------------------------------------------------------- /assets/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativeaura/threesixty-slider/HEAD/assets/7.png -------------------------------------------------------------------------------- /assets/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativeaura/threesixty-slider/HEAD/assets/8.png -------------------------------------------------------------------------------- /assets/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativeaura/threesixty-slider/HEAD/assets/9.png -------------------------------------------------------------------------------- /assets/browser_logos-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativeaura/threesixty-slider/HEAD/assets/browser_logos-64.png -------------------------------------------------------------------------------- /assets/fs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativeaura/threesixty-slider/HEAD/assets/fs.png -------------------------------------------------------------------------------- /assets/sprites.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativeaura/threesixty-slider/HEAD/assets/sprites.png -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativeaura/threesixty-slider/HEAD/bower.json -------------------------------------------------------------------------------- /dist/threesixty.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativeaura/threesixty-slider/HEAD/dist/threesixty.min.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativeaura/threesixty-slider/HEAD/package.json -------------------------------------------------------------------------------- /src/images/360.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativeaura/threesixty-slider/HEAD/src/images/360.png -------------------------------------------------------------------------------- /src/images/browser_logos-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativeaura/threesixty-slider/HEAD/src/images/browser_logos-64.png -------------------------------------------------------------------------------- /src/images/fs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativeaura/threesixty-slider/HEAD/src/images/fs.png -------------------------------------------------------------------------------- /src/plugins/threesixty.fullscreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativeaura/threesixty-slider/HEAD/src/plugins/threesixty.fullscreen.js -------------------------------------------------------------------------------- /src/styles/threesixty.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativeaura/threesixty-slider/HEAD/src/styles/threesixty.css -------------------------------------------------------------------------------- /src/styles/threesixty.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativeaura/threesixty-slider/HEAD/src/styles/threesixty.less -------------------------------------------------------------------------------- /src/threesixty.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativeaura/threesixty-slider/HEAD/src/threesixty.js -------------------------------------------------------------------------------- /tests/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativeaura/threesixty-slider/HEAD/tests/default.html -------------------------------------------------------------------------------- /tests/default.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativeaura/threesixty-slider/HEAD/tests/default.js --------------------------------------------------------------------------------