Ask a Question related to Macromedia Dynamic HTML, Design and Development.
-
Justin Maurer #1
Question about creating Menu / Navigation
Hello everyone. Got a question that hopefully someone can help me out
with. Currently, I'm using a menu script from DynamicDrive.com
([url]http://dynamicdrive.com/dynamicindex1/tabmouseover.htm[/url]) that when the
mouse runs over a link a description is displayed.
I would like to modify this code so when the mouse went over one of
the links it would bring up the normal description and say a different
description/caption in a different location. The only problem that
arises for me is that I have no idea how to do it. Could someone
please tell me what I should add to make it work correctly? Thanks
for any help at all. BTW, here is the code:
<!--Links used to initiate the sub menus. Pass in the desired submenu
index numbers (ie: 0, 1) -->
<a href="http://www.javascriptkit.com"
onMouseover="showit(0)">JavaScript Kit</a> | <a
href="http://freewarejava.com"
onMouseover="showit(1)">Freewarejava</a><br>
<!-- Edit the dimensions of the below, plus background color-->
<ilayer width=400 height=32 name="dep1" bgColor="#E6E6FF">
<layer name="dep2" width=400 height=32>
</layer>
</ilayer>
<div id="describe" style="background-color:#E6E6FF;width:400px;height:32px"
onMouseover="clear_delayhide()" onMouseout="resetit(event)"></div>
<script language="JavaScript1.2">
/*
Tabs Menu (mouseover)- By Dynamic Drive
For full source code and more DHTML scripts, visit
[url]http://www.dynamicdrive.com[/url]
This credit MUST stay intact for use
*/
var submenu=new Array()
//Set submenu contents. Expand as needed. For each content, make sure
everything exists on ONE LINE. Otherwise, there will be JS errors.
submenu[0]='<font size="2" face="Verdana"><b><a
href="http://www.javascriptkit.com/cutpastejava.shtml">Scripts</a> |
<a href="http://www.javascriptkit.com/javaindex.shtml">JS
tutorials</a> | <a href="http://www.javascriptkit.com/javatutors/index.shtml">Advanced
JS tutorials</a> | <a
href="http://www.javascriptkit.com/java/">Applets</a> | <a
href="http://www.javascriptkit.com/howto/">Web
Tutorials</a></b></font>'
submenu[1]='<font size="2" face="Verdana"><b><a
href="http://freewarejava.com/applets/index.shtml">Applets</a> | <a
href="http://freewarejava.com/tutorials/index.shtml">Tutorials</a> |
<a href="http://freewarejava.com/javasites/index.shtml">Sites and
Zines</a> | <a href="http://freewarejava.com/jsp/index.shtml">JSP</a></b></font>'
//Set delay before submenu disappears after mouse moves out of it (in
milliseconds)
var delay_hide=500
/////No need to edit beyond here
var menuobj=document.getElementById?
document.getElementById("describe") : document.all?
document.all.describe : document.layers? document.dep1.document.dep2 :
""
function showit(which){
clear_delayhide()
thecontent=(which==-1)? "" : submenu[which]
if (document.getElementById||document.all)
menuobj.innerHTML=thecontent
else if (document.layers){
menuobj.document.write(thecontent)
menuobj.document.close()
}
}
function resetit(e){
if (document.all&&!menuobj.contains(e.toElement))
delayhide=setTimeout("showit(-1)",delay_hide)
else if (document.getElementById&&e.currentTarget!= e.relatedTarget&&
!contains_ns6(e.currentTarget, e.relatedTarget))
delayhide=setTimeout("showit(-1)",delay_hide)
}
function clear_delayhide(){
if (window.delayhide)
clearTimeout(delayhide)
}
function contains_ns6(a, b) {
while (b.parentNode)
if ((b = b.parentNode) == a)
return true;
return false;
}
</script>
Justin Maurer Guest
-
menu navigation question
i am new at dreamweaver, so this is probably simple, but how do you make a menu a page that loads different text contents without going to different... -
creating PDF navigation
im trying to create a fully functioning PDF document in Freehand mx but can't figure how to imbed the navigation bookmarks.... can't find any... -
menu navigation system from FW to DW
Hi, I made my first menu in fireworks, which works fine, from previewing. But when I try to positon it in my web page, Its totally looking ygly... -
creating a navigation menu
Does anyone have a good site which shows how to create a navigation menu to be put in my site(take into account Im a flash beginner) thanks for... -
Creating Navigation Bar
Greetings Could someone please help me, I am using Fireworks 3 believe it or not and am still new at it. I would like to create a navigation bar...



Reply With Quote

