• 【转】模仿QQ\MSN的网页右下角弹出层


    DIV:

      
    <div id="winpop">
     
    <div class="title">操作结果:<span class="close" onclick="tips_pop()">X</span></div>
        
    <div id="DivOperateResult" class="con"></div>
    </div>

    JS:


    <script type="text/javascript">
    //弹出层代码,调用:tips_pop()
    function tips_pop(){
      
    var MsgPop=document.getElementById("winpop");
      
    var popH=parseInt(MsgPop.style.height);//将对象的高度转化为数字
       if (popH==0){
       MsgPop.style.display
    ="block";//显示隐藏的窗口
      show=setInterval("changeH('up')",2);
       }
      
    else { 
       hide
    =setInterval("changeH('down')",2);
      }
    }

    function changeH(str) {
     
    var MsgPop=document.getElementById("winpop");
     
    var popH=parseInt(MsgPop.style.height);
     
    if(str=="up"){
      
    if (popH<=100){
          MsgPop.style.height
    =(popH+4).toString()+"px";
      }
      
    else{  
         clearInterval(show);
      }
     }
     
    if(str=="down")
     { 
      
    if (popH>=4)
        {  
             MsgPop.style.height
    =(popH-4).toString()+"px";
        }
      
    else
        { 
            clearInterval(hide);   
            MsgPop.style.display
    ="none";  //隐藏DIV
        }
     }
    }

    window.onload
    =function(){    //加载
    document.getElementById('winpop').style.height='0px';
    //setTimeout("tips_pop()",800);     //3秒后调用tips_pop()这个函数

    }
    </script>

    ////////////////////////////////
    ////////Sixi. Let it be.../////
    //////////////////////////////

  • 相关阅读:
    protocol buffer
    一个数组中只有0,1,2三种元素,要求对这样的数组进行排序
    初见-TensorRT简介<转>
    如何制作python安装模块(setup.py)
    Reservoir Sampling
    Tensorflow 之 name/variable_scope 变量管理
    Tensorflow之调试(Debug) && tf.py_func()
    python with和上下文管理工具
    hello--GAN
    metronic后台模板学习 -- 所用外部插件列表
  • 原文地址:https://www.cnblogs.com/sixiweb/p/1411722.html
Copyright © 2020-2023  润新知