Results 1 to 1 of 1

Thread: Submenu dropdown problem!!!

  1. #1
    Join Date
    Jun 2008
    Posts
    1
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default AnyLink Vertical Menu!!!

    1) Script Title: AnyLink Vertical Menu

    2) Script URL (on DD): http://www.dynamicdrive.com/dynamici...nkvertical.htm

    3) Describe problem: It work perfectly, but i still need more submenus. I can made "Subsubmenu1", but it was dropdown from top, NOT from right side. Can anyone guide me how to modify it? Thanks.

    This is the problem:

    Free Image Hosting

    This is the code:
    <head>
    <style type="text/css">
    #dropmenudiv{
    position:absolute;
    background-color: #E3FFB0;
    border:1px solid black;
    border-bottom-width: 0;
    font:normal 12px Verdana;
    line-height:18px;
    z-index:100;
    }

    #dropmenudiv a{
    width: 100%;
    display: block;
    text-indent: 3px;
    border-bottom: 1px solid black;
    padding: 1px 0;
    text-decoration: none;
    font-weight: bold;
    }

    #dropmenudiv a:hover{ /*hover background color*/
    background-color: #C7FF5E;
    }
    </style>

    <script type="text/javascript">

    /***********************************************
    * AnyLink Vertical Menu- © Dynamic Drive (www.dynamicdrive.com)
    * This notice MUST stay intact for legal use
    * Visit http://www.dynamicdrive.com/ for full source code
    ***********************************************/

    //Contents for menu 1
    var menu1=new Array()
    menu1[0]='<a href="http://www.wilson1stop.com">Main Page</a>'
    menu1[1]='<a href="./aboutus.php">About Us</a>'
    menu1[2]='<a href="./contactus.php">Contact Us</a>'

    //Contents for menu 2
    var menu2=new Array()
    menu2[0]='<a href="#">Products 1</a>'
    menu2[1]='<a href="#">Products 2</a>'

    //Contents for menu 3
    var menu3=new Array()
    menu3[0]='<a href="#" onMouseover="dropdownmenu(this, event, submenu3a)">Real-Time Traffic Cameras</a>'
    menu3[1]='<a href="#" onMouseover="dropdownmenu(this, event, submenu3b)">Web TVs</a>'

    //Contents for submenu 3a
    var submenu3a=new Array()
    submenu3a[0]='<a href="./klvirtualmap.php">Kuala Lumpur Live Traffic Map</a>'
    submenu3a[1]='<a href="./dbkl.php">Kuala Lumpur City (DBKL)</a>'
    submenu3a[2]='<a href="./itis.php">Kuala Lumpur City (ITIS)</a>'
    submenu3a[3]='<a href="./pbsb.php">Penang Bridge (PBSB)</a>'
    submenu3a[4]='<a href="./pbsb2.php">Penang Bridge (LLM & PBSB)</a>'
    submenu3a[5]='<a href="./plus.php">North-South Expressway (PLUS)</a>'
    submenu3a[6]='<a href="./ldp.php">Damansara-Puchong Expressway (LDP)</a>'
    submenu3a[7]='<a href="./elite.php">Elite Expressway (ELITE)</a>'
    submenu3a[8]='<a href="./sprint.php">Sprint Expressway (SPRINT)</a>'
    submenu3a[9]='<a href="./npe.php">New Pantai Expressway (NPE)</a>'
    submenu3a[10]='<a href="./kesas.php">Shah Alam Expressway (KESAS)</a>'
    submenu3a[11]='<a href="./gce.php">Guthrie Corridor Expressway (GCE)</a>'
    submenu3a[12]='<a href="./lpt.php">East-Coast Expressway (LPT)</a>'

    //Contents for submenu 3b
    var submenu3b=new Array()
    submenu3b[0]='<a href="./tudou.php">Tudou</a>'
    submenu3b[0]='<a href="./youku.php">Youku</a>'
    submenu3b[1]='<a href="./pplive.php">PPLive</a>'
    submenu3b[2]='<a href="./ppmate.php">PPMate</a>'
    submenu3b[3]='<a href="./coolstreaming.php">CoolStreaming</a>'
    submenu3b[4]='<a href="./wwitv.php">wwiTV</a>'

    //Contents for menu 4
    var menu4=new Array()
    menu4[0]='<a href="#">FAQs 1</a>'
    menu4[1]='<a href="#">FAQs 2</a>'

    var disappeardelay=250 //menu disappear speed onMouseout (in miliseconds)
    var horizontaloffset=3 //horizontal offset of menu from default location. (0-5 is a good value)

    /////No further editting needed

    var ie4=document.all
    var ns6=document.getElementById&&!document.all

    if (ie4||ns6)
    document.write('<div id="dropmenudiv" style="visibility:hidden;width: 180px" onMouseover="clearhidemenu()" onMouseout="dynamichide(event)"></div>')

    function getposOffset(what, offsettype){
    var totaloffset=(offsettype=="left")? what.offsetLeft : what.offsetTop;
    var parentEl=what.offsetParent;
    while (parentEl!=null){
    totaloffset=(offsettype=="left")? totaloffset+parentEl.offsetLeft : totaloffset+parentEl.offsetTop;
    parentEl=parentEl.offsetParent;
    }
    return totaloffset;
    }

    function showhide(obj, e, visible, hidden, menuwidth){
    if (ie4||ns6)
    dropmenuobj.style.left=dropmenuobj.style.top=-500
    dropmenuobj.widthobj=dropmenuobj.style
    dropmenuobj.widthobj.width=menuwidth
    if (e.type=="click" && obj.visibility==hidden || e.type=="mouseover")
    obj.visibility=visible
    else if (e.type=="click")
    obj.visibility=hidden
    }

    function iecompattest(){
    return (document.compatMode && document.compatMode!="BackCompat")? document.documentElement : document.body
    }

    function clearbrowseredge(obj, whichedge){
    var edgeoffset=0
    if (whichedge=="rightedge"){
    var windowedge=ie4 && !window.opera? iecompattest().scrollLeft+iecompattest().clientWidth-15 : window.pageXOffset+window.innerWidth-15
    dropmenuobj.contentmeasure=dropmenuobj.offsetWidth
    if (windowedge-dropmenuobj.x-obj.offsetWidth < dropmenuobj.contentmeasure)
    edgeoffset=dropmenuobj.contentmeasure+obj.offsetWidth
    }
    else{
    var topedge=ie4 && !window.opera? iecompattest().scrollTop : window.pageYOffset
    var windowedge=ie4 && !window.opera? iecompattest().scrollTop+iecompattest().clientHeight-15 : window.pageYOffset+window.innerHeight-18
    dropmenuobj.contentmeasure=dropmenuobj.offsetHeight
    if (windowedge-dropmenuobj.y < dropmenuobj.contentmeasure){ //move menu up?
    edgeoffset=dropmenuobj.contentmeasure-obj.offsetHeight
    if ((dropmenuobj.y-topedge)<dropmenuobj.contentmeasure) //up no good either? (position at top of viewable window then)
    edgeoffset=dropmenuobj.y
    }
    }
    return edgeoffset
    }

    function populatemenu(what){
    if (ie4||ns6)
    dropmenuobj.innerHTML=what.join("")
    }

    function dropdownmenu(obj, e, menucontents, menuwidth){
    if (window.event) event.cancelBubble=true
    else if (e.stopPropagation) e.stopPropagation()
    clearhidemenu()
    dropmenuobj=document.getElementById? document.getElementById("dropmenudiv") : dropmenudiv
    populatemenu(menucontents)

    if (ie4||ns6){
    showhide(dropmenuobj.style, e, "visible", "hidden", menuwidth)
    dropmenuobj.x=getposOffset(obj, "left")
    dropmenuobj.y=getposOffset(obj, "top")
    dropmenuobj.style.left=dropmenuobj.x-clearbrowseredge(obj, "rightedge")+obj.offsetWidth+horizontaloffset+"px"
    dropmenuobj.style.top=dropmenuobj.y-clearbrowseredge(obj, "bottomedge")+"px"
    }

    return clickreturnvalue()
    }

    function clickreturnvalue(){
    if (ie4||ns6) return false
    else return true
    }

    function contains_ns6(a, b) {
    while (b.parentNode)
    if ((b = b.parentNode) == a)
    return true;
    return false;
    }

    function dynamichide(e){
    if (ie4&&!dropmenuobj.contains(e.toElement))
    delayhidemenu()
    else if (ns6&&e.currentTarget!= e.relatedTarget&& !contains_ns6(e.currentTarget, e.relatedTarget))
    delayhidemenu()
    }

    function hidemenu(e){
    if (typeof dropmenuobj!="undefined"){
    if (ie4||ns6)
    dropmenuobj.style.visibility="hidden"
    }
    }

    function delayhidemenu(){
    if (ie4||ns6)
    delayhide=setTimeout("hidemenu()",disappeardelay)
    }

    function clearhidemenu(){
    if (typeof delayhide!="undefined")
    clearTimeout(delayhide)
    }
    </script>
    </head>

    <body>
    <div class="sidebar-item-content">
    &nbsp;&nbsp;&nbsp; <a href="#" onMouseover="dropdownmenu(this, event, menu1, '180px')" onMouseout="delayhidemenu()"><b>Home</b></a><br>
    &nbsp;&nbsp;&nbsp; <a href="#" onMouseover="dropdownmenu(this, event, menu2, '180px')" onMouseout="delayhidemenu()"><b>Products</b></a><br>
    &nbsp;&nbsp;&nbsp; <a href="#" onMouseover="dropdownmenu(this, event, menu3, '180px')"><b>Services</b></a><br>
    &nbsp;&nbsp;&nbsp; <a href="#" onMouseover="dropdownmenu(this, event, menu4, '180px')" onMouseout="delayhidemenu()"><b>FAQs</b></a><br>
    </div></div>
    </body>
    Last edited by wilson1stop; 06-15-2008 at 06:40 PM.

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •