This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Animated sorting list | |
*/ | |
#list { | |
margin: 50px auto; | |
padding: 0; | |
width: 200px; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Slideshow concept | |
*/ | |
#slideshow { | |
height: 240px; | |
overflow: hidden; | |
position: relative; | |
width: 480px; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Image :hover animation II | |
*/ | |
figure { | |
height: 300px; | |
overflow: hidden; | |
perspective: 600; | |
position: relative; | |
width: 400px; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Image :hover animation I | |
*/ | |
figure { | |
height: 300px; | |
overflow: hidden; | |
perspective: 600; | |
position: relative; | |
width: 400px; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Image Roll | |
*/ | |
#image-roll { | |
height: 200px; | |
width: 600px; | |
-webkit-perspective: 600; | |
-moz-perspective: 600; | |
perspective: 600; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Image Roll | |
*/ | |
#image-roll { | |
height: 200px; | |
width: 600px; | |
perspective: 600; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Responsive devices :) | |
*/ | |
#responsive { | |
animation-name: device; | |
animation-duration: 5s; | |
animation-iteration-count: infinite; | |
animation-direction: alternate; | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Responsive devices :) | |
*/ | |
#responsive { | |
background: #fff; | |
border: 5px solid #333; | |
border-bottom: 17px solid #333; | |
border-radius: 5px; | |
border-top: 10px solid #333; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Nice CSS 3D animation | |
*/ | |
body { | |
perspective: 1400; | |
} | |
#box { | |
background: #d45; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Animated circle | |
*/ | |
#circle { | |
background: #f5a; | |
border-radius: 50%; | |
box-sizing: border-box; | |
height: 200px; | |
margin: 50px; |