zoukankan      html  css  js  c++  java
  • 网页右下角弹出窗口

    该代码兼容IE和firefox,简单,实用。

    <style type="text/css">
    #winpop { 200px; height:0px; position:absolute; right:0; bottom:0; border:1px solid #999999; margin:0; padding:1px; overflow:hidden; display:none; background:#FFFFFF}
    #winpop .title { 100%; height:20px; line-height:20px; background:#290052; font-weight:bold; text-align:center; font-size:12px; color:#FFFFFF; }
    #winpop .con { 100%; height:80px; line-height:80px; font-weight:bold; font-size:12px; color:#FF0000; text-decoration:underline; text-align:center}
    .close { position:absolute; right:4px; top:-1px; color:#FFFFFF; cursor:pointer}
    </style>
    <script type="text/javascript">
    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";
      }
     }
    }
    window.onload=function(){
    document.getElementById('winpop').style.height='0px';
    setTimeout("tips_pop()",800);
    }
    </script>

    <body leftmargin="0" topmargin="0" bgcolor="#000000">

    <div id="winpop">
     <div class="title">短消息<span class="close" onclick="tips_pop()">X</span></div>
        <div class="con">未读消息 (3)</div>
    </div>


       本人博客的文章大部分来自网络转载,因为时间的关系,没有写明转载出处和作者。所以在些郑重的说明:文章只限交流,版权归作者。谢谢

  • 相关阅读:
    字符串面试题:将句子的单词序倒置
    字符串面试题:将整型转换为字符串
    QML定时器
    QML按键事件处理
    QML鼠标事件实现变色矩形
    QML动态加载组件
    QML鼠标区域控制
    属性绑定与赋值
    设置虚拟机的本地端口映射
    关于修改banner信息;nginx反向代理apache应用
  • 原文地址:https://www.cnblogs.com/wzg0319/p/1565406.html
Copyright © 2011-2022 走看看