Like in Yahoo.com, when we scroll the page downwards its Search Box gets stuck to the top of the window on a particular scroll location? How to do that, Is it possible using css?
|
|
|
You need to have a container div for the div that will be fixed. The div that you want to show always at the top will be inside this div like this:
and your css:
|
|||||
|
|
You should define
this will hang div 10px from top and 20px from left and it will stuck there during page scroll. Also you should add some other properties you want, - maybe display: block; and other parameters. |
|||||||
|
|
Here is a very basic demo that does exactly what you want. Using jQuery to simplify tasks but this is simple enough you could make it pure JS if you wanted. http://jsfiddle.net/sg3s/uU8Wb/ What this does is simple;
Simplicity is all the magic here, if we can do both tasks with CSS but need to choose between when each state is active we simply write a script that switches a class rather than relying on JS to do it all. |
||||
|
|