我正在做一个右下角的弹出窗功能,类似于凡客的弹出窗。
现在有一个问题是,滚动鼠标,也就是下接滚动条的时候,弹出会跟着,看起来一闪一闪的。
而凡客的是不会跳的。。有哪位朋友做过的,给个解决办法,或者代码呀。。
小弟在此谢过了。

解决方案 »

  1.   

    ==============================这是我的js代码==========================<script type="text/javascript">
    var Message={
     set: function() {//最小化与恢复状态切换
      var set=this.minbtn.status == 1?[0,1,'block',this.char[0],'最小化']:[1,0,'none',this.char[1],'恢复'];
      this.minbtn.status=set[0];
      this.win.style.borderBottomWidth=set[1];
      this.content.style.display =set[2];
      this.minbtn.innerHTML =set[3]
      this.minbtn.title = set[4];
      this.win.style.top = this.getY().top;
     },
     close: function() {//关闭
      this.win.style.display = 'none';
      window.onscroll = null;
     },
     show: function() {//渐显
      clearInterval(this.timer2);
      var me = this,fx = this.fx(0, 100, 0.1),t = 0;
      this.timer2 = setInterval(function() {
       t = fx();
       if (t[1] == 0) {clearInterval(me.timer2) }
      },10);
     },
     fx: function(a, b, c) {//缓冲计算
      var cMath = Math[(a - b) > 0 ? "floor": "ceil"],c = c || 0.1;
      return function() {return [a += cMath((b - a) * c), a - b]}
     },
     getY: function() {//计算移动坐标
      var d = document,b = document.body, e = document.documentElement;
      var s = Math.max(b.scrollTop, e.scrollTop);
      var h = /BackCompat/i.test(document.compatMode)?b.clientHeight:e.clientHeight;
      var h2 = this.win.offsetHeight;
      return {foot: s + h + h2 + 2+'px',top: s + h - h2 - 2+'px'}
     },
     moveTo: function(y) {//移动动画
      clearInterval(this.timer);
      var me = this,a = parseInt(this.win.style.top)||0;
      var fx = this.fx(a, parseInt(y));
      var t = 0 ;
      this.timer = setInterval(function() {
       t = fx();
       me.win.style.top = t[0]+'px';
       if (t[1] == 0) {
        clearInterval(me.timer);
        me.bind();
       }
      },10);
     },
     bind:function (){//绑定窗口滚动条与大小变化事件
      var me=this,st,rt;
      window.onscroll = function() {
        me.win.style.top = me.getY().top;
        me.show();
      };
      window.onresize = function (){
       clearTimeout(rt);
       rt = setTimeout(function() {me.win.style.top = me.getY().top},100);     
      } 
     },
     init: function() {//创建HTML
      function $(id) {return document.getElementById(id)};
      this.win=document.createElement('DIV');
      this.win.id="msg_win";
      this.win.innerHTML='<div id="msg_title"><a href="javascript:void 0" title="关闭" id="msg_close"></a></div><div id="msg_content"></div>';
      document.body.appendChild(this.win);
      var set={closebtn: 'msg_close',title: 'msg_title',content: 'msg_content'};
      for (var Id in set) {this[Id] = $(set[Id])};
      var me = this;
      this.closebtn.onclick = function() {me.close()};
      this.char=navigator.userAgent.toLowerCase().indexOf('firefox')+1?['_','::','×']:['0','2','M'];//FF不支持webdings字体
      this.closebtn.innerHTML=this.char[2];
      setTimeout(function() {//初始化最先位置
       me.win.style.display = 'block';
       me.win.style.top = me.getY().foot;
       me.moveTo(me.getY().top);
      },500);
      return this;
     }
    };
    Message.init();
    Message.title.innerHTML = 'Love this game';
    Message.content.innerHTML = '快乐过五一,优惠不停息';
    </script>
      

  2.   

    一般非IE6的直接用position:fixed就可以了,杯具的IE6要用js在滚动事件里算,跳动是必然的,楼主不必太纠结……
      

  3.   

    ie6下那是肯定跳的,可我的在火狐和ie8下也跳。。
      

  4.   

    <style>
    html,body{margin:0;padding:0;}#y2 {position:fixed;bottom:0;right:0;}
    </style>
    <div id="y2"><img src="http://dotnet.aspx.cc/Images/logoSite.gif"/></div>
      

  5.   

    参见
    http://dotnet.aspx.cc/CodeLab/ExampleFixedPositionDiv.aspx
    http://dotnet.aspx.cc/CodeLab/
      

  6.   

    FF下不应该跳吧...
    楼主搜一下IE6绝对定位闪动hack
      

  7.   

    问题解决了,
    多谢各位,尤其是"net_lover" 看了他提供的资料,就知道怎么做了。。多谢。1.样式 改为:position:fixed2.把我里面的js代码中的
     bind:function (){//绑定窗口滚动条与大小变化事件
      var me=this,st,rt;
      //window.onscroll = function() {
      //  me.win.style.top = me.getY().top;
      //  me.show();
      //};
      window.onresize = function (){
       clearTimeout(rt);
       rt = setTimeout(function() {me.win.style.top = me.getY().top},100);     
      } 
     }
    window.onscroll 注掉就行了。。