├── .gitignore ├── README.md ├── css └── base.css ├── favicon.ico ├── img ├── 1.jpg ├── 10.jpg ├── 11.jpg ├── 12.jpg ├── 13.jpg ├── 14.jpg ├── 15.jpg ├── 16.jpg ├── 17.jpg ├── 18.jpg ├── 19.jpg ├── 2.jpg ├── 20.jpg ├── 21.jpg ├── 22.jpg ├── 23.jpg ├── 24.jpg ├── 25.jpg ├── 26.jpg ├── 27.jpg ├── 28.jpg ├── 3.jpg ├── 4.jpg ├── 5.jpg ├── 6.jpg ├── 7.jpg ├── 8.jpg ├── 9.jpg └── map.png ├── index.html ├── index2.html ├── index3.html ├── index4.html ├── index5.html ├── index6.html ├── js ├── anime.min.js ├── demo.js ├── demo1.js ├── demo2.js ├── demo3.js ├── demo4.js ├── demo5.js ├── demo6.js └── imagesloaded.pkgd.min.js └── pater ├── logo.svg ├── pater.css └── sencha.png /.gitignore: -------------------------------------------------------------------------------- 1 | *.DS_Store 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/AnimatedFrameSlideshow/HEAD/README.md -------------------------------------------------------------------------------- /css/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/AnimatedFrameSlideshow/HEAD/css/base.css -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/AnimatedFrameSlideshow/HEAD/favicon.ico -------------------------------------------------------------------------------- /img/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/AnimatedFrameSlideshow/HEAD/img/1.jpg -------------------------------------------------------------------------------- /img/10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/AnimatedFrameSlideshow/HEAD/img/10.jpg -------------------------------------------------------------------------------- /img/11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/AnimatedFrameSlideshow/HEAD/img/11.jpg -------------------------------------------------------------------------------- /img/12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/AnimatedFrameSlideshow/HEAD/img/12.jpg -------------------------------------------------------------------------------- /img/13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/AnimatedFrameSlideshow/HEAD/img/13.jpg -------------------------------------------------------------------------------- /img/14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/AnimatedFrameSlideshow/HEAD/img/14.jpg -------------------------------------------------------------------------------- /img/15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/AnimatedFrameSlideshow/HEAD/img/15.jpg -------------------------------------------------------------------------------- /img/16.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/AnimatedFrameSlideshow/HEAD/img/16.jpg -------------------------------------------------------------------------------- /img/17.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/AnimatedFrameSlideshow/HEAD/img/17.jpg -------------------------------------------------------------------------------- /img/18.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/AnimatedFrameSlideshow/HEAD/img/18.jpg -------------------------------------------------------------------------------- /img/19.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/AnimatedFrameSlideshow/HEAD/img/19.jpg -------------------------------------------------------------------------------- /img/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/AnimatedFrameSlideshow/HEAD/img/2.jpg -------------------------------------------------------------------------------- /img/20.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/AnimatedFrameSlideshow/HEAD/img/20.jpg -------------------------------------------------------------------------------- /img/21.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/AnimatedFrameSlideshow/HEAD/img/21.jpg -------------------------------------------------------------------------------- /img/22.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/AnimatedFrameSlideshow/HEAD/img/22.jpg -------------------------------------------------------------------------------- /img/23.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/AnimatedFrameSlideshow/HEAD/img/23.jpg -------------------------------------------------------------------------------- /img/24.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/AnimatedFrameSlideshow/HEAD/img/24.jpg -------------------------------------------------------------------------------- /img/25.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/AnimatedFrameSlideshow/HEAD/img/25.jpg -------------------------------------------------------------------------------- /img/26.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/AnimatedFrameSlideshow/HEAD/img/26.jpg -------------------------------------------------------------------------------- /img/27.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/AnimatedFrameSlideshow/HEAD/img/27.jpg -------------------------------------------------------------------------------- /img/28.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/AnimatedFrameSlideshow/HEAD/img/28.jpg -------------------------------------------------------------------------------- /img/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/AnimatedFrameSlideshow/HEAD/img/3.jpg -------------------------------------------------------------------------------- /img/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/AnimatedFrameSlideshow/HEAD/img/4.jpg -------------------------------------------------------------------------------- /img/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/AnimatedFrameSlideshow/HEAD/img/5.jpg -------------------------------------------------------------------------------- /img/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/AnimatedFrameSlideshow/HEAD/img/6.jpg -------------------------------------------------------------------------------- /img/7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/AnimatedFrameSlideshow/HEAD/img/7.jpg -------------------------------------------------------------------------------- /img/8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/AnimatedFrameSlideshow/HEAD/img/8.jpg -------------------------------------------------------------------------------- /img/9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/AnimatedFrameSlideshow/HEAD/img/9.jpg -------------------------------------------------------------------------------- /img/map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/AnimatedFrameSlideshow/HEAD/img/map.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/AnimatedFrameSlideshow/HEAD/index.html -------------------------------------------------------------------------------- /index2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/AnimatedFrameSlideshow/HEAD/index2.html -------------------------------------------------------------------------------- /index3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/AnimatedFrameSlideshow/HEAD/index3.html -------------------------------------------------------------------------------- /index4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/AnimatedFrameSlideshow/HEAD/index4.html -------------------------------------------------------------------------------- /index5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/AnimatedFrameSlideshow/HEAD/index5.html -------------------------------------------------------------------------------- /index6.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/AnimatedFrameSlideshow/HEAD/index6.html -------------------------------------------------------------------------------- /js/anime.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/AnimatedFrameSlideshow/HEAD/js/anime.min.js -------------------------------------------------------------------------------- /js/demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/AnimatedFrameSlideshow/HEAD/js/demo.js -------------------------------------------------------------------------------- /js/demo1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/AnimatedFrameSlideshow/HEAD/js/demo1.js -------------------------------------------------------------------------------- /js/demo2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/AnimatedFrameSlideshow/HEAD/js/demo2.js -------------------------------------------------------------------------------- /js/demo3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/AnimatedFrameSlideshow/HEAD/js/demo3.js -------------------------------------------------------------------------------- /js/demo4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/AnimatedFrameSlideshow/HEAD/js/demo4.js -------------------------------------------------------------------------------- /js/demo5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/AnimatedFrameSlideshow/HEAD/js/demo5.js -------------------------------------------------------------------------------- /js/demo6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/AnimatedFrameSlideshow/HEAD/js/demo6.js -------------------------------------------------------------------------------- /js/imagesloaded.pkgd.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/AnimatedFrameSlideshow/HEAD/js/imagesloaded.pkgd.min.js -------------------------------------------------------------------------------- /pater/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/AnimatedFrameSlideshow/HEAD/pater/logo.svg -------------------------------------------------------------------------------- /pater/pater.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/AnimatedFrameSlideshow/HEAD/pater/pater.css -------------------------------------------------------------------------------- /pater/sencha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/AnimatedFrameSlideshow/HEAD/pater/sencha.png --------------------------------------------------------------------------------