473,320 Members | 1,961 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,320 software developers and data experts.

dynamic menu

I have created a vertical menu:
www.fadilo.altervista.org

I would like the menu to
always be visable in the top left of the screen (where it isn't
placed), only when
the user scrolls down the page.

I would like this:
http://www.milonic.com/mfa/2005-Octo...u-do-this.html

suggestions (or script)?

thanks very much.............

Mar 4 '07 #1
4 1808
On Mar 5, 7:59 am, "zachille" <fad...@gmail.comwrote:
I have created a vertical menu:www.fadilo.altervista.org

I would like the menu to
always be visable in the top left of the screen (where it isn't
placed), only when
the user scrolls down the page.

I would like this:http://www.milonic.com/mfa/2005-Octo...c-menu-do-this....

suggestions (or script)?
Use their code.

--
Rob

Mar 4 '07 #2
On 5 Mar, 00:19, "RobG" <r...@iinet.net.auwrote:
On Mar 5, 7:59 am, "zachille" <fad...@gmail.comwrote:
I have created a vertical menu:www.fadilo.altervista.org
I would like the menu to
always be visable in the top left of the screen (where it isn't
placed), only when
the user scrolls down the page.
I would like this:http://www.milonic.com/mfa/2005-Octo...c-menu-do-this....
suggestions (or script)?

Use their code.

--
Rob
I would want to use this code:

function moveFollower(){
var doc=(document.compatMode=="CSS1Compat")?
document.documentElement:document.body;
if (!doc || !document.getElementById)
return;

var divMenu=document.getElementById("follower"),
yMenuFrom = parseInt (divMenu.style.top, 10)||0,
yMenuTo = doc.scrollTop,
wheight = doc.clientHeight,
timeoutNextCheck = 500;

if ( yMenuFrom != yMenuTo && wheight >= divMenu.offsetHeight )
{
yOffset = Math.ceil( Math.abs( yMenuTo - yMenuFrom ) / 30 );
if ( yMenuTo < yMenuFrom )
yOffset = -yOffset;
timeoutNextCheck = 5;
divMenu.style.top = yMenuFrom + yOffset;
}

setTimeout (moveFollower, timeoutNextCheck);
}
window.onload=function(){
moveFollower();
}

Mar 5 '07 #3
On Mar 5, 10:17 am, "zachille" <fad...@gmail.comwrote:
On 5 Mar, 00:19, "RobG" <r...@iinet.net.auwrote:
On Mar 5, 7:59 am, "zachille" <fad...@gmail.comwrote:
I have created a vertical menu:www.fadilo.altervista.org
I would like the menu to
always be visable in the top left of the screen (where it isn't
placed), only when
the user scrolls down the page.
I would like this:http://www.milonic.com/mfa/2005-Octo...c-menu-do-this....
suggestions (or script)?
Use their code.
--
Rob

I would want to use this code:
[..snip..]

Take a look at thread "Keep sections in a fixed location" by
msubodth@gmail

Mar 5 '07 #4
On 5 Mar, 17:26, scripts.cont...@gmail.com wrote:
On Mar 5, 10:17 am, "zachille" <fad...@gmail.comwrote:
On 5 Mar, 00:19, "RobG" <r...@iinet.net.auwrote:
On Mar 5, 7:59 am, "zachille" <fad...@gmail.comwrote:
I have created a vertical menu:www.fadilo.altervista.org
I would like the menu to
always be visable in the top left of the screen (where it isn't
placed), only when
the user scrolls down the page.
I would like this:http://www.milonic.com/mfa/2005-Octo...c-menu-do-this....
suggestions (or script)?
Use their code.
--
Rob
I would want to use this code:

[..snip..]

Take a look at thread "Keep sections in a fixed location" by
msubodth@gmail
Could you give to an example for modification code?

...thanks YOU!

Mar 5 '07 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
by: Macamba | last post by:
Hi all, I am currently developing a website for a voluntary organisation. It is my first step in website development. The dynamic menu I developed has some bugs, which I addressed in another...
4
by: Stromboli | last post by:
hi people, My problem is that I need to build a dynamic menu (preferably that works in all the browsers) that appears when I mouseover a certain link. The problem is that I have to declare...
1
by: Nathan Bloomfield | last post by:
Does anyone know if there is any documentation which relates to Access2k + ? or can anyone help adjust the code? I am having trouble converting the DAO references. TITLE :INF: How to...
1
by: biela | last post by:
Hi I'm from Poland and I have small question :). I'm looking for sample example how to create dynamic menu. Generaly my website will see like that ------------------------------------ 2...
2
by: vikram | last post by:
I have to design a page which contains a dynamic generated menu at left side.Menu will be generated once a user log in and will remain as it is for the rest of the user session. Problem is that...
19
by: mart2006 | last post by:
I've created a dynamic drop down menu that populates itself with data from a MySQL table. What I would like to do is create a non dynamic drop down menu that alters what is shown in the dynamic menu....
3
by: RahimAsif | last post by:
I am writing an application that requires the a portion of the main menu to be dynamic. The menu has file, panels, view files and help across the top. The view files sub menu needs to be...
0
by: benfly08 | last post by:
Hi, I used SWT to develop an windows application. In the application there is a dynamic created popup menu. The dynamic part is that i will pass a list of name to be a submenu of one menu item....
10
by: mart2006 | last post by:
Hi, I'm fairly new to PHP and I've created a dynamic drop down menu that populates itself with data from a MySQL table. What I would like to do is create a non dynamic drop down menu that alters...
0
by: DolphinDB | last post by:
The formulas of 101 quantitative trading alphas used by WorldQuant were presented in the paper 101 Formulaic Alphas. However, some formulas are complex, leading to challenges in calculation. Take...
0
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 6 Mar 2024 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM). In this month's session, we are pleased to welcome back...
1
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 6 Mar 2024 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM). In this month's session, we are pleased to welcome back...
0
by: Vimpel783 | last post by:
Hello! Guys, I found this code on the Internet, but I need to modify it a little. It works well, the problem is this: Data is sent from only one cell, in this case B5, but it is necessary that data...
0
by: jfyes | last post by:
As a hardware engineer, after seeing that CEIWEI recently released a new tool for Modbus RTU Over TCP/UDP filtering and monitoring, I actively went to its official website to take a look. It turned...
1
by: PapaRatzi | last post by:
Hello, I am teaching myself MS Access forms design and Visual Basic. I've created a table to capture a list of Top 30 singles and forms to capture new entries. The final step is a form (unbound)...
0
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
0
by: af34tf | last post by:
Hi Guys, I have a domain whose name is BytesLimited.com, and I want to sell it. Does anyone know about platforms that allow me to list my domain in auction for free. Thank you
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.