Jump to content

Jvascript Menu, code needed from three website


member

Recommended Posts

Hi,

I need the code for the navigation on the three website: http://www.three.co.uk/index.omp
It is on the left of the site. I tried to view the source, and copied some of the code with the target image files, but it's not working.

If anyone knows how to do this, or get that fade away of the menu, or the same code (that works)
it would be much appreciated.

Thank You very much.
Link to comment
Share on other sites

well that's quite simple. Try swaping images while the cursor is over them or just change the color of the bgcolor.

[code]
<sc ript langu age="javascript">
function overColor(a)
{
a.bgColor="yellow";
}
function outColor(a)
{
a.bgColor="white";
}
</script>
<table>
<tr onmouseover="overColor(this)" onblur="outColor(this)"><td>Link1</td></tr>
<tr onmouseover="overColor(this)" onblur="outColor(this)"><td>Link2</td></tr>
<tr onmouseover="overColor(this)" onblur="outColor(this)"><td>Link3</td></tr>
</table>
[/code]
Link to comment
Share on other sites

thanks for the code, but the colour remains on it when u put ur mouse on it then off.

I mainly wanted that "fade effect" as on the three website: http://www.three.co.uk/index.omp on the navigation.

if anyone else knows it would be much appreciated f u wold let me know.

Thank You
Link to comment
Share on other sites

  • 4 weeks later...
This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.