<div style="background-color:#999999;width:100px;text-align:center;
padding:3px;border-bottom:1px solid #FFFFFF;z-index:1;"
onmouseover="myMenu.style.display='block'"
onmouseout="myMenu.style.display='none'">
<div style="position:absolute;width:0px;height:0px;overflow:visible;"> 
<div id=myMenu style="position:absolute;left:-10px;top:25px;display:none;
width:90px;background-color:#CCCCCC;padding:5px;text-align:left;"> 
<font color="#FFFFFF">&nbsp;<a href="../fair_app/customer_b.php">1</a><br/>
<br/>
&nbsp;<a href="../fair_app/quotation_b.php">2</a><br/>
<br/>
&nbsp;<a href="../fair_app/fair_app_b.php">3</a><br/>
<br/>
&nbsp;<a>...</a><br/>
<br/>
</font></div>
</div>
<font color="#FFFFFF"><a href=#none><font size="4">check</font></a></font></div>

解决方案 »

  1.   

    TO:caotian2000(乡约北京)
       对javascript不熟悉。试图下载没有成功。
    to :haifeng5257()  
       我想要的是卓越网的那种慢慢展开的效果
      

  2.   

    <div onmouseover="stop();start();">here!</div>
    <div id="aaa" style="border:1px solid blue;" onclick="stop();">AAAAAA</div><script>
    var Interval;
    stop();
    function start()
    {
     Interval=window.setInterval("zoomIn()",1);
    }
    function stop()
    {
    aaa.style.width=10;
    aaa.style.height=10;
    aaa.style.display="none";
    window.clearInterval(Interval);
    }
    function zoomIn()
    {
    aaa.style.display="";
    aaa.style.width=parseInt(aaa.style.width)+50;
    aaa.style.height=parseInt(aaa.style.width)+10;
    if(parseInt(aaa.style.width)>=400)
    {
    window.clearInterval(Interval);
    }
     
    }
    </script>
      

  3.   

    感谢~superdullwolf ,结帖~~~~~~~~~~~~