I've seen this done in a few sites, an example is artofadambetts.com. The scroll bar on the page scrolls only an element of the page, not the entire page. I looked at the source and havent't been able to figure it out yet. How is this done?
|
|
|
|
|
|
|
That's pretty nifty. He uses "position:fixed" on most of the divs, and the one that scrolls is the one that doesn't have it. |
||
|
|
|
|
In fact it is not the scrolling part that is "doing the job", it is the fixed part of the page. In order to do this, you should use CSS and add And you should not forget to give them a greater |
||
|
|
|
|
To find out how people do these kinds of things in CSS and/or Javascript the tool Firebug is just outstanding: |
||
|
|
|
|
This can be done in CSS using the "position:absolute;" clause Here is an example template: |
||
|
|
|
|
The browser is scrolling the page, its just that part of it is fixed in position. This is done by using the "position: fixed" CSS property on the part that you wish not to scroll. |
||
|
|
|
|
They've set the side and top elements to have fixed positions via CSS (see line 94 of their style.css file). This holds them in the viewport while the rest scrolls. |
||
|
|
|
|
For a div, you can add in the cSS overflow: auto For example, <div style="overflow:auto; height: 500px">Some really long text</div> Edit: After looking at the site you posted, you probably don't want this. What he does in his website is make the layout as fixed (position: fixed) and assigns it a higher z-index than the text, which is lower z-index. For example: <div class="highz"> //Put random stuff here. it'll be fixed </div> <div class="lowz"> Put stuff here you want to scroll and position it.</div> with css file
div.highz {position: fixed; z-index: 2;}
div.lowz {position: fixed; z-index: 1;}
|
|||
|
|
|
|
It should be noted that without further hacks position fixed does not work for IE6, which is still managing to hold on to 15-30% of the market, depending on your site. |
||
|
|
|
You can use fixed positioning or absolute positioning to tie various elements to fixed positions on the page. Alternatively you can specify a fixed size element (such as a DIV) and use As already mentioned, getting everything to work in Internet Explorer AND Firefox/Opera/Safari requires judicious use of hacks. |
||
|
|
|
|
To put scroll bars on an element such as a div:
If you only want a horizontal or vertical scroll bar, only use whichever of overflow-x and overflow-y you need. |
||
|
|
