Created
November 22, 2012 10:31
-
-
Save ynonp/4130454 to your computer and use it in GitHub Desktop.
Untitled
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
div#viewport { | |
border: 5px solid hotpink; | |
width: 320px; | |
height: 180px; | |
position:relative; | |
margin: 0 auto; | |
overflow: hidden; | |
} | |
div div { | |
width: 320px; | |
height: 180px; | |
position: absolute; | |
} | |
div div:nth-child(1) { | |
background: blue; | |
left: -100%; | |
} | |
div div:nth-child(2) { | |
background: red; | |
left: 0; | |
} | |
div div:nth-child(3) { | |
background: green; | |
left: 100%; | |
} | |
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
<div id=viewport> | |
<div></div> | |
<div></div> | |
<div></div> | |
</div> | |
<button>Prev</button> | |
<button>Next</button> | |
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
{"view":"separate","fontsize":"100","seethrough":"","prefixfree":"1","page":"all"} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment