Created
February 28, 2012 14:31
-
-
Save ramsesoriginal/1932861 to your computer and use it in GitHub Desktop.
Horizontal scrolling (to be enhanced with http://brandonaaron.net/code/mousewheel/docs
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
/** | |
* Horizontal scrolling (to be enhanced with http://brandonaaron.net/code/mousewheel/docs | |
* | |
* JavaScript to add besides the plugin: | |
* $(function() { | |
* $("body > div#container").mousewheel(function(event, delta) { | |
* this.scrollLeft -= (delta * 30); | |
* event.preventDefault(); | |
* }); | |
* }); | |
*/ | |
* { | |
box-sizing: border-box; | |
} | |
html, body { | |
height: 100%; | |
} | |
::-webkit-scrollbar { | |
width: 5px; | |
height: 5px; | |
} | |
::-webkit-scrollbar-track { | |
-webkit-box-shadow: inset 0 0 3px rgba(0,0,0,0.3); | |
border-radius: 5px; | |
} | |
::-webkit-scrollbar-thumb { | |
border-radius: 5px; | |
-webkit-box-shadow: inset 0 0 3px rgba(0,0,0,0.5); | |
} | |
body { | |
padding-bottom: 5em; | |
padding-top: 7em; | |
} | |
body > div#container { | |
min-height: 100%; | |
height:auto !important; | |
height:100%; /* IE hack for min-height */ | |
overflow:hidden; | |
position:relative; | |
white-space:nowrap; | |
overflow-x:scroll; | |
overflow-y:auto; | |
} | |
body > header { | |
height:7em; | |
position:relative; | |
margin-top: -7em; | |
} | |
body > footer{ | |
height:5em; | |
} | |
body > div#container > .post { | |
display: inline-block; | |
min-width: 200px; | |
vertical-align: top; | |
} |
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
<header> | |
Header | |
</header> | |
<div id="container"> | |
<article class="post"> | |
A1; | |
</article> | |
<article class="post"> | |
A2; | |
</article> | |
<article class="post"> | |
A3; | |
</article> | |
<article class="post"> | |
A4; | |
</article> | |
<article class="post"> | |
A5; | |
</article> | |
</div> | |
<footer> | |
footer | |
</footer> |
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","seethrough":"","prefixfree":"1","page":"css"} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment