国产污污污污在线观看_免费的毛片网站在线播放_日本在线不卡一区二区免费_亚洲Av综合永久无码精品天堂_影视欧美少妇综合_女人18毛片水真多免费播放_欧美亚洲日韩国产手机版_av三级片在线观看_武汉别墅影院定制_国产精选大秀一区二区

專業(yè)的廣州網(wǎng)站建設、廣州網(wǎng)站制作公司為您服務,電話:020-85548809,29883069 手機訪問
微信關注
關注奇億廣州網(wǎng)站建設微信
網(wǎng)站導航
新聞中心
首頁>新聞中心>網(wǎng)頁設計

簡單又兼容的在線客服滾動代碼

添加時間:2013/2/12 13:27:23    編輯:奇億網(wǎng)站建設公司

我們經(jīng)常要用到在線客服代碼的站長估計會遇到,一般的在線客戶都是又復雜又多文件的,搞得浪費時間找個半天在哪修改客服;好不容易找個簡單的在線客服代碼卻又發(fā)現(xiàn)不兼容各大瀏覽器,急得不知道用哪種在線客服滾動代碼是好。

下面廣州奇億建站為您介紹一種簡單又兼容的在線滾動客服代碼:

<div id="divStayTopright" style="position:absolute; z-index:999;width:90px;height:150px; right:0px;">
<a href="tencent://message/?uin=81233044&Site=廣州建站&Menu=yes" target="_blank"><img src="images/qq.gif" width=90 height=150 border=0 alt="廣州建站廣州網(wǎng)站建設在線客服"></a>
</div>
 
<script type="text/javascript">
//<![CDATA[
var tips; var theTop = 180/*這是默認高度,越大越往下*/; var old = theTop;
function initFloatTips() {
  tips = document.getElementById('divStayTopright');
  moveTips();
};
function moveTips() {
  var tt=50;
  if (window.innerHeight) {
    pos = window.pageYOffset
  }
  else if (document.documentElement && document.documentElement.scrollTop) {
    pos = document.documentElement.scrollTop
  }
  else if (document.body) {
    pos = document.body.scrollTop;
  }
 
  pos=pos-tips.offsetTop+theTop;
  pos=tips.offsetTop+pos/10;
   
  if (pos < theTop) pos = theTop;
  if (pos != old) {
    tips.style.top = pos+"px";
    tt=10;
        //alert(tips.style.top);
  }
   
  old = pos;
  setTimeout(moveTips,tt);
}
//!]]>
initFloatTips();
</script>

是吧,很簡單實用又兼容各大瀏覽器的在線客服滾動代碼吧!