Thu, 2013-07-18 21:13
Hey guys, i'm trying to mimic the scrolling feature of this website: http://nylllon.com/
But i'm having a bit of trouble making content that's not in the view hidden. I see that in their code, they have 2 wrappers for the columns, one that has the overflow:hidden and then one that just holds in the columns. I did this but there seems to be a little more than that going on...
How would you achieve hiding the content that's not in view?
Here's my code:
.app-container{ overflow:hidden; } .column-container{ width:1600px; // this will be handled with javascript } .column{ width:300px; }
Sat, 2013-07-20 05:15
#1
custom scroll logic
Its not just CSS that will help to make a custom scroll bar, you'll have to use JavaScript to change the position on the click of the direction arrows. This JPEG can help you to understand the custom scroll logic.
Attachment | Size |
---|---|
custom-scroll-logic.jpg | 143.44 KB |