div层 ,圆角,有关按钮,点击关闭时从下向上收缩。或者也可以看 http://webim.csdn.net/msg.aspx?Incept=qingang1983点击 添加 qingang1983 为您的好友 连接时 的弹出窗口 后面的网页不要禁止

解决方案 »

  1.   

    to cpp2017(慕白兄),xuyiazl(女人?火星动物!地球很危险,快回去! =.=!!!) 找不到啊,找得到就不问啦
      

  2.   

    ASP.NET Popup Control http://www.codeproject.com/aspnet/asppopup.asp
      

  3.   

    to Jinglecat(晓风残月 >> 问题需简洁,错误要详细) 要纯javascript代码
      

  4.   

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
    <title>菜单</title>
    <style>
    body{font-size:12px}
    </style>
    <script language="javascript">
    var act;
    function open()
    {
    window.open("http://www.163.com","_blank");
    }
    function divx()
    {

    var div=document.all.div;
    divdis(1);
    var h=parseInt(div.offsetHeight);
    if(h<200)
    {
    div.style.height=(h+20)+"px";
    clearTimeout(act);
    act=setTimeout("divx()",100);
    }
    else
    {
    var value=""
    for(var i=1;i<10;i++)
    {
    value+="<a href='http://www.163.com' target='_blank'>连接</a>"+"<br>";
    }
    div.innerHTML=value;
    }
    }
    function divx2()
    {

    var div=document.all.div;
    var h=parseInt(div.offsetHeight);
    div.innerHTML="";
    if(h>30)
    {
    div.style.height=(h-20)+"px";
    clearTimeout(act);
    act=setTimeout("divx2()",100);
    }
    else
    {

    div.style.display="none";
    }
    }
    function divdis(value)
    {
    var div=document.all.div;
    if(value=1)
    {
    div.style.display="";
    }
    else
    {
    div.style.display="none";
    }
    }
    </script>
    </head><body>
    <input type="button" value="菜单" onmouseover="divx()" onmouseout="divx2()" /><!--<a href="javascript:open()">http://www.163.com</a>-->
    <div style="display:none; width:150px;height:0px;position:absolute; top:37px; left:12px; border:1px solid #999999" id="div"></div>
    </body>
    </html>
    直接粘贴就可以了
      

  5.   

    http://webim.csdn.net/App_Themes/Default/Script/Framework.js