首页 > 语言 > JavaScript > 正文

js 左右悬浮对联广告代码示例

2024-05-06 16:11:55
字体:
来源:转载
供稿:网友

这篇文章主要介绍了js 左右悬浮对联广告代码示例,需要的朋友可以参考下

一段js 左右悬浮广告代码,只要修改广告图片地址与连接地址,相应参数根据页面调整下就可以使用这段左右悬浮广告代码了

代码:

  1. var delta=0.15 
  2. var collection; 
  3. function floaters() { 
  4. this.items = ; 
  5. this.addItem = function(id,x,y,content) 
  6. document.write('<DIV id='+id+' style="Z-INDEX: 10; POSITION: absolute; width:80px; height:60px;left:'+(typeof(x)=='string'?eval(x):x)+';top:'+(typeof(y)=='string'?eval(y):y)+'">'+content+'</DIV>'); 
  7.  
  8. var newItem = {}; 
  9. newItem.object = document.getElementById(id); 
  10. newItem.x = x; 
  11. newItem.y = y; 
  12. this.items[this.items.length] = newItem; 
  13. this.play = function() 
  14. collection = this.items 
  15. setInterval('play()',10); 
  16. function play() 
  17. for(var i=0;i<collection.length;i++) 
  18. var followObj = collection[i].object; 
  19. var followObj_x = (typeof(collection[i].x)=='string'?eval(collection[i].x):collection[i].x); 
  20. var followObj_y = (typeof(collection[i].y)=='string'?eval(collection[i].y):collection[i].y); 
  21. if(followObj.offsetLeft!=(document.body.scrollLeft+followObj_x)) { 
  22. var dx=(document.body.scrollLeft+followObj_x-followObj.offsetLeft)*delta; 
  23. dx=(dx>0?1:-1)*Math.ceil(Math.abs(dx)); 
  24. followObj.style.left=followObj.offsetLeft+dx; 
  25. if(followObj.offsetTop!=(document.body.scrollTop+followObj_y)) { 
  26. var dy=(document.body.scrollTop+followObj_y-followObj.offsetTop)*delta; 
  27. dy=(dy>0?1:-1)*Math.ceil(Math.abs(dy)); 
  28. followObj.style.top=followObj.offsetTop+dy; 
  29. followObj.style.display = ''
  30. }  
  31.  
  32. var theFloaters = new floaters(); 
  33. theFloaters.addItem('followDiv1','document.body.clientWidth-112',230,'<a href=左链接地址 target=_blank><img src=左图片地址 border=0></a>'); 
  34. theFloaters.addItem('followDiv2',12,230,'<a href=右链接地址 target=_blank><img src=右图片地址 border=0></a>'); 
  35. theFloaters.play(); 

另存为*.js文件,在页面中引用:调用即可,*代表你另存的文件名!

注意:修改广告图片地址和连接地址!相应的参数可以根据页面自行调整。

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表

图片精选