how do you achieve the effects when you hover the links at top(HOME,ABOUT , JOBS) which you can see in http://www.webdesignerwall.com/ , can someone give me a hint ? or any? please
all answers are appreciated :)
|
|
how do you achieve the effects when you hover the links at top(HOME,ABOUT , JOBS) which you can see in http://www.webdesignerwall.com/ , can someone give me a hint ? or any? please all answers are appreciated :)
|
|||
|
|
|
|
Each link (#nav li a) contains the nav item text plus an additional span which is set to "display:none" by default. The span also has a set of other styles relating to its position and background-image (which is the text that appears). On #nav li a:hover the span becomes display:block, which makes it visible at the defined position. No scripting needed. HTML
CSS:
This is a completely stripped down version of course, you will need to add your own positioning and other styles as appropriate. |
|||
|
|
|
A lot of people here are far too quick to whip out the scripting languages. Tsk, tsk. This is achievable through CSS. I'd even be inclined to say that there is no need for additional mark-up. One could use a background image on the :hover state. Simple. |
||
|
|
|
|
There are many, many ways this could be acheived. The simplest would be to have each navigation item change the above image to reflect its corresponding graphic.
-- jQuery
|
|||
|
|
|
|
The way it's achieved is by using an empty It's positioned off screen by default and move into view on hover Like so:
And the CSS:
|
||
|
|
|
|
It is probably a script on the Home, About and Jobs links that makes a floating div tag visible on mouseover and invisible on mouseout. Here is a simple code example achieving a similar effect:
|
||
|
|
|
|
Using jQuery you would just do something like
|
||
|
|
|
|
by the fact that you can rollover the whole area when on rollover i would suggest that it is simply an alternative background that appears on rollover using css. the elements themselves might then be positioned absolutely within the navigation container. |
||
|
|
|
|
In this particular instance, the developer placed a span tag inside the li elements that make up the menu. That span has (most notably) these properties:
After that, just some JavaScript to make the span appear/disappear. |
||
|
|
|
|
A pure CSS solution is explained on Eric Meyer site: Pure CSS Popups 2. |
||
|
|