js QQ客服悬浮效果实现代码

时间:2021-12-06 06:17:25

代码:

  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"
  2. <html xmlns="http://www.w3.org/1999/xhtml"
  3. <head> 
  4. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 
  5. <title>QQ客服悬浮特效代码_www.zzvips.com</title> 
  6. </head> 
  7. <body style="height:2000px;"
  8. <script type="text/javascript"
  9. window.onload = window.onresize = window.onscroll = function () 
  10.  var oBox = document.getElementById("qqbox_zzjs"); 
  11.  var oLine = document.getElementById("online_lanrenzhijia"); 
  12.  var oMenu = document.getElementById("menu_zzjs_net"); 
  13.  var iScrollTop = document.documentElement.scrollTop || document.body.scrollTop; 
  14.  setTimeout(function () 
  15.  { 
  16.  clearInterval(oBox.timer); 
  17.  var iTop = parseInt((document.documentElement.clientHeight - oBox.offsetHeight)/2) + iScrollTop; 
  18.  oBox.timer = setInterval(function () 
  19.  { 
  20.   var iSpeed = (iTop - oBox.offsetTop) / 8; 
  21.   iSpeed = iSpeed > 0 ? Math.ceil(iSpeed) : Math.floor(iSpeed); 
  22.   oBox.offsetTop == iTop ? clearInterval(oBox.timer) : (oBox.style.top = oBox.offsetTop + iSpeed + "px"); 
  23.  }, 30) 
  24.  }, 100) 
  25.  oBox.onmouseover = function () 
  26.  { 
  27.  this.style.width = 131 + "px"
  28.  oLine.style.display = "block"
  29.  oMenu.style.display = "none"
  30.  }; 
  31.  oBox.onmouseout = function () 
  32.  { 
  33.  this.style.width = ''
  34.  oLine.style.display = "none"
  35.  oMenu.style.display = "block"
  36.  }; 
  37. }; 
  38. document.write("<style>img{border:0;}ul,li{padding:0;margin:0;}.box_lanrenzhijia {z-index:99;right:0;width:128px;height:195px;position:absolute;}.box_lanrenzhijia .press{right:0;width:36px;cursor:pointer;position:absolute;height:128px;}.box_lanrenzhijia .zzjs_net_list{left:0;width:131px;position:absolute;height:195px;background:url(images/20120321lanrenzhijia_1.gif) no-repeat left center;}.box_lanrenzhijia .zzjs_net_list ul{padding:37px 0 0 21px;}.box_lanrenzhijia .zzjs_net_list li{height:26px;margin-bottom:3px;_margin-bottom:3px; list-style-type:none;}</style><div class="box_lanrenzhijia" id="qqbox_zzjs"><div class="zzjs_net_list" id="online_lanrenzhijia" style="display:none;"><ul><li><a href="http://wpa.qq.com/msgrd?V=1&Uin=123456789&Site=服务器之家&Menu=yes"><img src="images/20111126lanrenzhijia_3.gif" alt="服务器之家一号客服"></a></li><li><a href="http://wpa.qq.com/msgrd?V=1&Uin=123456789&Site=服务器之家&Menu=yes"><img src="images/20111126lanrenzhijia_3.gif" alt="服务器之家二号客服"></a></li><li><a href="http://wpa.qq.com/msgrd?V=1&Uin=123456789&Site=服务器之家&Menu=yes"><img src="images/20111126lanrenzhijia_3.gif" alt="服务器之家三号客服"></a></li><li><a href="http://wpa.qq.com/msgrd?V=1&Uin=123456789&Site=服务器之家&Menu=yes"><img src="images/20111126lanrenzhijia_3.gif" alt="服务器之家四号客服"></a></li><li><a href="http://wpa.qq.com/msgrd?V=1&Uin=123456789&Site=服务器之家&Menu=yes"><img src="images/20111126lanrenzhijia_3.gif" alt="服务器之家五号客服"></a></li></ul></div><div id="menu_zzjs_net"><img src="images/20111126lanrenzhijia_4.gif" class="press" alt="在线客服"></div></div>"); 
  39. </script> 
  40. </body> 
  41. </html>