标题:怎么样在此代码中加入一个关闭效果
取消只看楼主
d778
Rank: 1
等 级:新手上路
帖 子:257
专家分:0
注 册:2006-1-10
 问题点数:0 回复次数:2 
怎么样在此代码中加入一个关闭效果

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()
{

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 = '';
}
}

var theFloaters = new floaters();

theFloaters.addItem('followDiv2',12,230,'<iframe name=jujumao src=122-122.htm marginwidth=1 marginheight=1 width=118 height="180" scrolling="no" border="0" frameborder="0"></iframe> </a></a> <a href="javascript:;" onclick="hidead()" style="color:red;text-decoration:none;font-size:12px;">关闭</a></div>');
theFloaters.play();


我自己加了一个 但是不能用,点了一后 并不关闭广告

搜索更多相关主题的帖子: newItem 效果 var 代码 string 
2006-03-22 14:52
d778
Rank: 1
等 级:新手上路
帖 子:257
专家分:0
注 册:2006-1-10
得分:0 

那这个里面怎么实现 关闭这个对联广告呢。包括关闭<iframe </iframe>


2006-03-22 15:10
d778
Rank: 1
等 级:新手上路
帖 子:257
专家分:0
注 册:2006-1-10
得分:0 

怎么弄啊!!!


2006-03-22 15:32



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-52036-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.050991 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved