├── .gitignore ├── .htaccess ├── 5bb61414448aa26b936f.html ├── BingSiteAuth.xml ├── README ├── accordions.php ├── animations.php ├── apple-touch-icon-114x114-precomposed.png ├── apple-touch-icon-72x72-precomposed.png ├── apple-touch-icon-precomposed.png ├── blank.html ├── blog ├── index.php ├── posts.json ├── retina-image-replacement-for-new-ipad │ └── index.php └── template.php ├── cfimg.php ├── cfimg1.php ├── cfimg2.php ├── cfimg3.php ├── cfimg4.php ├── cfimg5.php ├── constants.php ├── contents.php ├── demos ├── .sass-cache │ └── 00ddb80f231d471d353506c12623e0225e68591d │ │ └── cuboids.scssc ├── 3d.php ├── cubecarousel.php ├── cuboids.css ├── cuboids.php ├── cuboids.scss ├── filters-and-fades.php ├── geo │ ├── css │ │ └── default.css │ ├── index.php │ ├── lastfm.php │ ├── sampledata.php │ └── test.php ├── imageslider.php ├── index.php ├── metro │ ├── .sass-cache │ │ └── 9bd320ac354d9a757d0816ff2ba1fa352699b9b7 │ │ │ ├── _normalize.scssc │ │ │ └── style.scssc │ ├── css │ │ ├── _normalize.scss │ │ ├── style.css │ │ └── style.scss │ ├── index.php │ └── js │ │ └── metro.js ├── multiple_images.php ├── next_prev_slider.php ├── simple3d.php └── speed.php ├── disqus.php ├── favicon.ico ├── feed.xml ├── flip.php ├── footer.php ├── images ├── Cirques.jpg ├── Clown Fish.jpg ├── Stones.jpg ├── Summit.jpg ├── browser_icons │ ├── 128-chrome.png │ ├── 128-firefox.png │ ├── 128-ie.png │ ├── 128-opera.png │ └── 128-safari.png ├── jquery_timeline.PNG └── transitions_timeline.PNG ├── index.php ├── indexcontents.php ├── js ├── modernizr-1.1.min.js ├── modernizr-newest.min.js └── prettify.js ├── legacy.php ├── logo.png ├── references.php ├── robots.txt ├── sitemap.xml ├── slide1.php ├── slide2.php ├── sliding.php ├── styles └── default.css ├── support.php ├── transforms.php └── transitions.php /.gitignore: -------------------------------------------------------------------------------- 1 | /disqusapi/* -------------------------------------------------------------------------------- /.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focalstrategy/CSS-Transitions-Transforms-and-Animation/HEAD/.htaccess -------------------------------------------------------------------------------- /5bb61414448aa26b936f.html: -------------------------------------------------------------------------------- 1 | 5bb61414448aa26b936f 2 | -------------------------------------------------------------------------------- /BingSiteAuth.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focalstrategy/CSS-Transitions-Transforms-and-Animation/HEAD/BingSiteAuth.xml -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focalstrategy/CSS-Transitions-Transforms-and-Animation/HEAD/README -------------------------------------------------------------------------------- /accordions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focalstrategy/CSS-Transitions-Transforms-and-Animation/HEAD/accordions.php -------------------------------------------------------------------------------- /animations.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focalstrategy/CSS-Transitions-Transforms-and-Animation/HEAD/animations.php -------------------------------------------------------------------------------- /apple-touch-icon-114x114-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focalstrategy/CSS-Transitions-Transforms-and-Animation/HEAD/apple-touch-icon-114x114-precomposed.png -------------------------------------------------------------------------------- /apple-touch-icon-72x72-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focalstrategy/CSS-Transitions-Transforms-and-Animation/HEAD/apple-touch-icon-72x72-precomposed.png -------------------------------------------------------------------------------- /apple-touch-icon-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focalstrategy/CSS-Transitions-Transforms-and-Animation/HEAD/apple-touch-icon-precomposed.png -------------------------------------------------------------------------------- /blank.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /blog/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focalstrategy/CSS-Transitions-Transforms-and-Animation/HEAD/blog/index.php -------------------------------------------------------------------------------- /blog/posts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focalstrategy/CSS-Transitions-Transforms-and-Animation/HEAD/blog/posts.json -------------------------------------------------------------------------------- /blog/retina-image-replacement-for-new-ipad/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focalstrategy/CSS-Transitions-Transforms-and-Animation/HEAD/blog/retina-image-replacement-for-new-ipad/index.php -------------------------------------------------------------------------------- /blog/template.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focalstrategy/CSS-Transitions-Transforms-and-Animation/HEAD/blog/template.php -------------------------------------------------------------------------------- /cfimg.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focalstrategy/CSS-Transitions-Transforms-and-Animation/HEAD/cfimg.php -------------------------------------------------------------------------------- /cfimg1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focalstrategy/CSS-Transitions-Transforms-and-Animation/HEAD/cfimg1.php -------------------------------------------------------------------------------- /cfimg2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focalstrategy/CSS-Transitions-Transforms-and-Animation/HEAD/cfimg2.php -------------------------------------------------------------------------------- /cfimg3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focalstrategy/CSS-Transitions-Transforms-and-Animation/HEAD/cfimg3.php -------------------------------------------------------------------------------- /cfimg4.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focalstrategy/CSS-Transitions-Transforms-and-Animation/HEAD/cfimg4.php -------------------------------------------------------------------------------- /cfimg5.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focalstrategy/CSS-Transitions-Transforms-and-Animation/HEAD/cfimg5.php -------------------------------------------------------------------------------- /constants.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focalstrategy/CSS-Transitions-Transforms-and-Animation/HEAD/constants.php -------------------------------------------------------------------------------- /contents.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focalstrategy/CSS-Transitions-Transforms-and-Animation/HEAD/contents.php -------------------------------------------------------------------------------- /demos/.sass-cache/00ddb80f231d471d353506c12623e0225e68591d/cuboids.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focalstrategy/CSS-Transitions-Transforms-and-Animation/HEAD/demos/.sass-cache/00ddb80f231d471d353506c12623e0225e68591d/cuboids.scssc -------------------------------------------------------------------------------- /demos/3d.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focalstrategy/CSS-Transitions-Transforms-and-Animation/HEAD/demos/3d.php -------------------------------------------------------------------------------- /demos/cubecarousel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focalstrategy/CSS-Transitions-Transforms-and-Animation/HEAD/demos/cubecarousel.php -------------------------------------------------------------------------------- /demos/cuboids.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focalstrategy/CSS-Transitions-Transforms-and-Animation/HEAD/demos/cuboids.css -------------------------------------------------------------------------------- /demos/cuboids.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focalstrategy/CSS-Transitions-Transforms-and-Animation/HEAD/demos/cuboids.php -------------------------------------------------------------------------------- /demos/cuboids.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focalstrategy/CSS-Transitions-Transforms-and-Animation/HEAD/demos/cuboids.scss -------------------------------------------------------------------------------- /demos/filters-and-fades.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focalstrategy/CSS-Transitions-Transforms-and-Animation/HEAD/demos/filters-and-fades.php -------------------------------------------------------------------------------- /demos/geo/css/default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focalstrategy/CSS-Transitions-Transforms-and-Animation/HEAD/demos/geo/css/default.css -------------------------------------------------------------------------------- /demos/geo/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focalstrategy/CSS-Transitions-Transforms-and-Animation/HEAD/demos/geo/index.php -------------------------------------------------------------------------------- /demos/geo/lastfm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focalstrategy/CSS-Transitions-Transforms-and-Animation/HEAD/demos/geo/lastfm.php -------------------------------------------------------------------------------- /demos/geo/sampledata.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focalstrategy/CSS-Transitions-Transforms-and-Animation/HEAD/demos/geo/sampledata.php -------------------------------------------------------------------------------- /demos/geo/test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focalstrategy/CSS-Transitions-Transforms-and-Animation/HEAD/demos/geo/test.php -------------------------------------------------------------------------------- /demos/imageslider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focalstrategy/CSS-Transitions-Transforms-and-Animation/HEAD/demos/imageslider.php -------------------------------------------------------------------------------- /demos/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focalstrategy/CSS-Transitions-Transforms-and-Animation/HEAD/demos/index.php -------------------------------------------------------------------------------- /demos/metro/.sass-cache/9bd320ac354d9a757d0816ff2ba1fa352699b9b7/_normalize.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focalstrategy/CSS-Transitions-Transforms-and-Animation/HEAD/demos/metro/.sass-cache/9bd320ac354d9a757d0816ff2ba1fa352699b9b7/_normalize.scssc -------------------------------------------------------------------------------- /demos/metro/.sass-cache/9bd320ac354d9a757d0816ff2ba1fa352699b9b7/style.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focalstrategy/CSS-Transitions-Transforms-and-Animation/HEAD/demos/metro/.sass-cache/9bd320ac354d9a757d0816ff2ba1fa352699b9b7/style.scssc -------------------------------------------------------------------------------- /demos/metro/css/_normalize.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focalstrategy/CSS-Transitions-Transforms-and-Animation/HEAD/demos/metro/css/_normalize.scss -------------------------------------------------------------------------------- /demos/metro/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focalstrategy/CSS-Transitions-Transforms-and-Animation/HEAD/demos/metro/css/style.css -------------------------------------------------------------------------------- /demos/metro/css/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focalstrategy/CSS-Transitions-Transforms-and-Animation/HEAD/demos/metro/css/style.scss -------------------------------------------------------------------------------- /demos/metro/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focalstrategy/CSS-Transitions-Transforms-and-Animation/HEAD/demos/metro/index.php -------------------------------------------------------------------------------- /demos/metro/js/metro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focalstrategy/CSS-Transitions-Transforms-and-Animation/HEAD/demos/metro/js/metro.js -------------------------------------------------------------------------------- /demos/multiple_images.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focalstrategy/CSS-Transitions-Transforms-and-Animation/HEAD/demos/multiple_images.php -------------------------------------------------------------------------------- /demos/next_prev_slider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focalstrategy/CSS-Transitions-Transforms-and-Animation/HEAD/demos/next_prev_slider.php -------------------------------------------------------------------------------- /demos/simple3d.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focalstrategy/CSS-Transitions-Transforms-and-Animation/HEAD/demos/simple3d.php -------------------------------------------------------------------------------- /demos/speed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focalstrategy/CSS-Transitions-Transforms-and-Animation/HEAD/demos/speed.php -------------------------------------------------------------------------------- /disqus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focalstrategy/CSS-Transitions-Transforms-and-Animation/HEAD/disqus.php -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focalstrategy/CSS-Transitions-Transforms-and-Animation/HEAD/favicon.ico -------------------------------------------------------------------------------- /feed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focalstrategy/CSS-Transitions-Transforms-and-Animation/HEAD/feed.xml -------------------------------------------------------------------------------- /flip.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focalstrategy/CSS-Transitions-Transforms-and-Animation/HEAD/flip.php -------------------------------------------------------------------------------- /footer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focalstrategy/CSS-Transitions-Transforms-and-Animation/HEAD/footer.php -------------------------------------------------------------------------------- /images/Cirques.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focalstrategy/CSS-Transitions-Transforms-and-Animation/HEAD/images/Cirques.jpg -------------------------------------------------------------------------------- /images/Clown Fish.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focalstrategy/CSS-Transitions-Transforms-and-Animation/HEAD/images/Clown Fish.jpg -------------------------------------------------------------------------------- /images/Stones.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focalstrategy/CSS-Transitions-Transforms-and-Animation/HEAD/images/Stones.jpg -------------------------------------------------------------------------------- /images/Summit.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focalstrategy/CSS-Transitions-Transforms-and-Animation/HEAD/images/Summit.jpg -------------------------------------------------------------------------------- /images/browser_icons/128-chrome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focalstrategy/CSS-Transitions-Transforms-and-Animation/HEAD/images/browser_icons/128-chrome.png -------------------------------------------------------------------------------- /images/browser_icons/128-firefox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focalstrategy/CSS-Transitions-Transforms-and-Animation/HEAD/images/browser_icons/128-firefox.png -------------------------------------------------------------------------------- /images/browser_icons/128-ie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focalstrategy/CSS-Transitions-Transforms-and-Animation/HEAD/images/browser_icons/128-ie.png -------------------------------------------------------------------------------- /images/browser_icons/128-opera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focalstrategy/CSS-Transitions-Transforms-and-Animation/HEAD/images/browser_icons/128-opera.png -------------------------------------------------------------------------------- /images/browser_icons/128-safari.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focalstrategy/CSS-Transitions-Transforms-and-Animation/HEAD/images/browser_icons/128-safari.png -------------------------------------------------------------------------------- /images/jquery_timeline.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focalstrategy/CSS-Transitions-Transforms-and-Animation/HEAD/images/jquery_timeline.PNG -------------------------------------------------------------------------------- /images/transitions_timeline.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focalstrategy/CSS-Transitions-Transforms-and-Animation/HEAD/images/transitions_timeline.PNG -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focalstrategy/CSS-Transitions-Transforms-and-Animation/HEAD/index.php -------------------------------------------------------------------------------- /indexcontents.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focalstrategy/CSS-Transitions-Transforms-and-Animation/HEAD/indexcontents.php -------------------------------------------------------------------------------- /js/modernizr-1.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focalstrategy/CSS-Transitions-Transforms-and-Animation/HEAD/js/modernizr-1.1.min.js -------------------------------------------------------------------------------- /js/modernizr-newest.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focalstrategy/CSS-Transitions-Transforms-and-Animation/HEAD/js/modernizr-newest.min.js -------------------------------------------------------------------------------- /js/prettify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focalstrategy/CSS-Transitions-Transforms-and-Animation/HEAD/js/prettify.js -------------------------------------------------------------------------------- /legacy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focalstrategy/CSS-Transitions-Transforms-and-Animation/HEAD/legacy.php -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focalstrategy/CSS-Transitions-Transforms-and-Animation/HEAD/logo.png -------------------------------------------------------------------------------- /references.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focalstrategy/CSS-Transitions-Transforms-and-Animation/HEAD/references.php -------------------------------------------------------------------------------- /robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focalstrategy/CSS-Transitions-Transforms-and-Animation/HEAD/robots.txt -------------------------------------------------------------------------------- /sitemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focalstrategy/CSS-Transitions-Transforms-and-Animation/HEAD/sitemap.xml -------------------------------------------------------------------------------- /slide1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focalstrategy/CSS-Transitions-Transforms-and-Animation/HEAD/slide1.php -------------------------------------------------------------------------------- /slide2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focalstrategy/CSS-Transitions-Transforms-and-Animation/HEAD/slide2.php -------------------------------------------------------------------------------- /sliding.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focalstrategy/CSS-Transitions-Transforms-and-Animation/HEAD/sliding.php -------------------------------------------------------------------------------- /styles/default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focalstrategy/CSS-Transitions-Transforms-and-Animation/HEAD/styles/default.css -------------------------------------------------------------------------------- /support.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focalstrategy/CSS-Transitions-Transforms-and-Animation/HEAD/support.php -------------------------------------------------------------------------------- /transforms.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focalstrategy/CSS-Transitions-Transforms-and-Animation/HEAD/transforms.php -------------------------------------------------------------------------------- /transitions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/focalstrategy/CSS-Transitions-Transforms-and-Animation/HEAD/transitions.php --------------------------------------------------------------------------------