標籤:
在給大家推薦了《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諮詢客服代碼