支持IE和Firefox的右下角弹窗js代码

内容摘要
因为工作和其他原因该代码没有最终完善,等以后项目上了可能会重新开发
文章正文

因为工作和其他原因该代码没有最终完善,等以后项目上了可能会重新开发,本代码也并非本人原创,朋友给的一段代码,我在他的基础上改的,主要改进点:

    * 在支持position:fixed的浏览器上使用position:fixed,这样当拖动共同条的时候弹窗位置是固定的。
    * 优化了IE6下onscroll 事件绑定的函数

还需改进的地方(过段事件等项目应用的时候会修改):

    * 30秒后自动关闭
    * 方便的插入弹出内容

主要代码:

JavaScript Code复制内容到剪贴板
  1.   
  2. var RBMessage={   
  3.     boxW:200,   
  4.     boxH:101,   
  5.     init:function(){   
  6.         var that = this;   
  7.         this.createBox();   
  8.         document.getElementById("msg_close").onclick = function() {   
  9.             that.BoxWin.style.display="none";   
  10.         }   
  11.     },   
  12.     bind: function() { //绑定窗口滚动条与大小变化事件   
  13.         var that = this,   
  14.         st, rt;   
  15.         window.onscroll = function() {   
  16.             if( !!window.ActiveXObject && !window.XMLHttpRequest ){   
  17.                 clearTimeout(st);   
  18.                 clearTimeout(that.timer2);   
  19.                 that.setOpacity(0);   
  20.                 st = setTimeout(function() {   
  21.                     that.BoxWin.style.top = that.getY().top;   
  22.                     that.show();   
  23.                 },500);   
  24.             }   
  25.         };   
  26.         window.onresize = function(){   
  27.             if (!!window.ActiveXObject && !window.XMLHttpRequest) {   
  28.                 clearTimeout(rt);   
  29.                 rt = setTimeout(function(){   
  30.                     that.BoxWin.style.top = that.getY().top   
  31.                 }, 100);   
  32.             }   
  33.         }   
  34.     },   
  35.     show: function() { //渐显   
  36.         clearInterval(this.timer2);   
  37.         var that = this,   
  38.         fx = this.fx(0, 100, 0.1),   
  39.         t = 0;   
  40.         this.timer2 = setInterval(function() {   
  41.             t = fx();   
  42.             that.setOpacity(t[0]);   
  43.             if (t[1] == 0) {   
  44.                 clearInterval(that.timer2)   
  45.             }   
  46.         },   
  47.         10);   
  48.     },   
  49.     fx: function(a, b, c) { //缓冲计算   
  50.         var cMath = Math[(a - b) > 0 ? "floor""ceil"],   
  51.         c = c || 0.1;   
  52.         return function() {   
  53.             return [a += cMath((b - a) * c), a - b]   
  54.         }   
  55.     },   
  56.     setOpacity: function(x) { //设置透明度   
  57.         var v = x >= 100 ? '''Alpha(opacity=' + x + ')';   
  58.         this.BoxWin.style.visibility = x < = 0 ? 'hidden''visible'//IE有绝对或相对定位内容不随父透明度变化的bug   
  59.         this.BoxWin.style.filter = v;   
  60.         this.BoxWin.style.opacity = x / 100;   
  61.     },   
  62.     getY: function() { //计算移动坐标   
  63.         var d = document,   
  64.         b = document.body,   
  65.         e = document.documentElement;   
  66.         var s = Math.max(b.scrollTop, e.scrollTop);   
  67.         var h = /BackCompat/i.test(document.compatMode) ? b.clientHeight: e.clientHeight;   
  68.         var h2 = this.BoxWin.offsetHeight;   
  69.         return {   
  70.             foot: s + h + h2 + 2 + 'px',   
  71.             top: s + h - h2 - 2 + 'px'  
  72.         }   
  73.     },   
  74.     moveTo: function(y) { //移动动画   
  75.         clearInterval(this.timer);   
  76.         var that = this;   
  77.         var moveTopNum=-that.boxH;   
  78.         this.timer = setInterval(function() {   
  79.             moveTopNum+=5;   
  80.             that.BoxWin.style.bottom =  moveTopNum +'px';   
  81.             if (moveTopNum >= 0) {   
  82.                 clearInterval(that.timer);   
  83.                 that.bind();   
  84.             }   
  85.         },50);   
  86.         return this;   
  87.     },   
  88.     createBox:function(){   
  89.         this.BoxWin=document.createElement('div');   
  90.         this.BoxWin.style.width = this.boxW+"px";   
  91.         this.BoxWin.style.height =  this.boxH+"px";   
  92.         this.BoxWin.style.bottom = - this.boxH+"px";   
  93.         this.BoxWin.id = "msg_win";   
  94.         this.BoxWin.innerHTML = '<div class="icos"><a href="javascript:void 0" title="关闭" id="msg_close">X</a></div><div id="msg_title">温馨提示(标题)</div><div id="msg_content"></div>';   
  95.         document.body.appendChild(this.BoxWin);   
  96.         var that = this;   
  97.         setTimeout(function() { //初始化最先位置   
  98.             that.BoxWin.style.display = 'block';   
  99.             that.moveTo();   
  100.         },1000);   
  101.         return this;   
  102.     }   
  103. };   
  104. RBMessage.init();  

 

代码注释

作者:喵哥笔记

IDC笔记

学的不仅是技术,更是梦想!