可浮動的線上qq諮詢客服代碼

來源:互聯網
上載者:User

標籤:

  在給大家推薦了《QQ線上客服代碼可以拖動浮動》然後又推薦了《QQ線上諮詢代碼上下浮動型》之後,有朋友問我有沒有簡單點的可浮動的線上QQ諮詢客服代碼,其實是有的,我先賣個關子說說原理。算了還是上傳個線上qq諮詢客服代碼的示範圖片吧。如:

  樣子很難看,但是這就是非常簡潔的浮動qq客服代碼了,其實最簡單的QQ線上客服代碼還是http://imis.qq.com/webpresence/code.shtml官方的,不過不能浮動。等下提供來源程式的打包下載。

  先看浮動部分的代碼,這個floaters函數就是讓一個div元素浮動

  function floaters() {http://www.hebby120.com

  this.items = [];

  this.addItem = function(id,x,y,content) {

  document.write(‘

  ‘+content+‘‘);

  var newItem = {};

  newItem.object = document.getElementById(id);

  newItem.x = x;

  newItem.y = y;

  this.items[this.items.length] = newItem;

  }

  this.play = function() {

  collection = this.items

  setInterval(‘play()‘,10);

  }

  }

  然後是顯示部分的代碼,play這個函數是控制線上qq諮詢客服代碼的顯示的:

  function play() {

  if(screen.width<=800) {

  for(var i=0;i

  collection[i].object.style.display = ‘none‘;

  }

  return;

  }

  for(var i=0;i

  var followObj = collection[i].object;

  var followObj_x = (typeof(collection[i].x)==‘string‘?eval(collection[i].x):collection[i].x);

  var followObj_y = (typeof(collection[i].y)==‘string‘?eval(collection[i].y):collection[i].y);

  if(followObj.offsetLeft!=(document.body.scrollLeft+followObj_x)) {

  var dx=(document.body.scrollLeft+followObj_x-followObj.offsetLeft)*delta;

  dx=(dx>0?1:-1)*Math.ceil(Math.abs(dx));

  followObj.style.left=followObj.offsetLeft+dx;

  }

  if(followObj.offsetTop!=(document.body.scrollTop+followObj_y)) {

  var dy=(document.body.scrollTop+followObj_y-followObj.offsetTop)*delta;

  dy=(dy>0?1:-1)*Math.ceil(Math.abs(dy));

  followObj.style.top=followObj.offsetTop+dy;http://www.hebckyy.com

  }

  followObj.style.display = ‘‘;

  }

  }

可浮動的線上qq諮詢客服代碼

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.