Created
May 27, 2012 08:08
-
-
Save dziudek/2802794 to your computer and use it in GitHub Desktop.
Scalable photo scroll
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
/** | |
* Scalable photo scroll | |
*/ | |
section { | |
border: 1px solid #aaa; | |
width: 600px; | |
max-width: 100%; | |
} | |
#wrap1{ | |
width: 100%; | |
overflow: hidden; | |
} | |
#wrap2{ | |
width: 500%; | |
} | |
#wrap2 img { | |
display: block; | |
float: left; | |
width: 20%; | |
max-width: 20%; | |
} |
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
<section> | |
<div id="wrap1"> | |
<div id="wrap2"> | |
<img src="http://placekitten.com/200/200" /> | |
<img src="http://placekitten.com/200/200" /> | |
<img src="http://placekitten.com/200/200" /> | |
<img src="http://placekitten.com/200/200" /> | |
<img src="http://placekitten.com/200/200" /> | |
</div> | |
</div> | |
</section> |
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":"split","fontsize":"100","seethrough":"","prefixfree":"1","page":"css"} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment