Created
May 15, 2012 19:07
-
-
Save schadeck/2704263 to your computer and use it in GitHub Desktop.
CSS3 Auto Scroll with Left Float
This file contains 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
/** | |
* CSS3 Auto Scroll with Left Float | |
*/ | |
.container { | |
width:400px; | |
height:500px; | |
overflow: auto; | |
background:green; | |
margin: 1em auto; | |
padding: 0; | |
} | |
.container div { | |
margin-top: -0; | |
transition: margin-top 5s linear; | |
padding: 1em; | |
} | |
.container div:hover, .container div:active { | |
margin-top: -100%; | |
} | |
.container img { | |
float: left; | |
margin: 0 1em 1em 0 | |
} | |
This file contains 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
<!-- content to be placed inside <body>…</body> --> | |
<div class="container"> | |
<img src="http://placehold.it/200x300" /> | |
<div class="scrollUp"> | |
<h2>please :hover here</h2> | |
Cosby sweater PBR raw denim occupy terry richardson, tofu cardigan fingerstache lo-fi twee small batch you probably haven't heard of them pork belly cray portland.<br><br>Mixtape brunch mustache sartorial farm-to-table marfa. <br><br>Photo booth skateboard sriracha, pour-over lomo letterpress iphone PBR ethical mixtape trust fund leggings kale chips. <br><br>Cray williamsburg gluten-free, godard artisan occupy quinoa twee craft beer sartorial swag portland food truck. <br><br>Cosby sweater vice mcsweeney's mustache, gluten-free thundercats chillwave wolf williamsburg wes anderson. <br><br>Pitchfork wolf chambray echo park, you probably haven't heard of them messenger bag flexitarian odd future raw denim PBR mumblecore fixie fanny pack. <br><br>Ennui biodiesel trust fund, swag vegan +1 mcsweeney's mumblecore selvage echo park cliche pork belly PBR wes anderson. | |
</div> | |
</div> | |
This file contains 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-vertical","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