关于网页中 左右边上广告问题---进来看看吧!

armyiou 2005-03-16 04:04:06
高手们,你们好,小弟向大家请教个问题:

在网页中加入左右广告,怎么弄呢?我的做法如下:(可是为什么不行呢?)

1.写一个*.JS 程序 如下:

var delta=0.15
var collection;
function floaters() {
this.items= [];
this.addItem= function(id,x,y,content){
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>');

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);
}
}
function play()
{
if(screen.width<=800)
{
for(var i=0;i<collection.length;i++)
{
collection[i].object.style.display= 'none';
}
return;
}
for(var i=0;i<collection.length;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;
}
followObj.style.display= '';
}
}
document.write("<img src='Modules/Counter/Counter.aspx?web=00&refer="+escape(document.referrer)+"&url="+escape(window.location.href)+"' width=0 height=0 border=0 >")
var theFloaters= new floaters();
theFloaters.addItem('followDiv2',6,80,'<a href="Modules/Company/MMC.aspx"><img src="Images/left-ad.gif" border=0></a>');
//theFloaters.addItem('followDiv3',6,180,'<a href="Modules/Company/MMC.aspx"><img src="Images/left-ad.gif" border=0></a>');
theFloaters.play();

2.在要加广告的页中加入如下代码:
<script language="javascript" type="text/javascript" src="js/left-ad.js"></script>

高手们,你们看这样子行不行呢?

为什么我的那个图片就不动呢? 而是停在那,不向下游动,这是为什么呢?

高手们,帮帮我吧!
...全文
51 1 打赏 收藏 转发到动态 举报
写回复
用AI写文章
1 条回复
切换为时间正序
请发表友善的回复…
发表回复
syeerzy 2005-03-16
  • 打赏
  • 举报
回复
那个js不是你写的吧?怎么我很久以前就有人给我一份一模一样的?

怎么我的就正常了?一样的,估计你那份被改动过,太长没时间看,你再下载一份吧。到处都有

16,554

社区成员

发帖
与我相关
我的任务
社区描述
VB技术相关讨论,主要为经典vb,即VB6.0
社区管理员
  • VB.NET
  • 水哥阿乐
  • 无·法
加入社区
  • 近7日
  • 近30日
  • 至今
社区公告
暂无公告

试试用AI创作助手写篇文章吧