html 图片 带关闭按钮,下面js中的图片右上角加个关闭按钮, 关闭功能已实现。...

var Rimifon = {

"Ads": new Object,

"NewFloatAd": function (imgUrl, strLink,canClose) {

var ad = document.createElement("a");

ad.DirV = true;

ad.DirH = true;

ad.AutoMove = true;

ad.Image = new Image;

ad.Seed = Math.random();

ad.Timer = setInterval("Rimifon.Float(" + ad.Seed + ")", 50);

this.Ads[ad.Seed] = ad;

ad.Image.Parent = ad;

ad.style.position = "absolute";

ad.style.left = 0;

ad.style.top = 0;

ad.Image.src = imgUrl;

ad.Image.onmouseover = function () { this.Parent.AutoMove = false; }

ad.Image.onmouseout = function () { this.Parent.AutoMove = true; }

if (strLink) {

ad.href = strLink;

ad.Image.border = 0;

ad.target = "_blank";

}

//

if (canClose) {

var closeA = document.createElement('a');

closeA.style.cssText = 'position:absolute;right:0;top:-20px;line-height:20px;cursor:pointer';

closeA.innerHTML = '关闭';

ad.appendChild(closeA);

ad.onclick = function () { clearInterval(ad.Timer);ad.parentNode.removeChild(ad)}

}

//

ad.appendChild(ad.Image);

document.body.appendChild(ad);

return ad;

},

"Float": function (floatId) {

var ad = this.Ads[floatId];

if (ad.AutoMove) {

var curLeft = parseInt(ad.style.left);

var curTop = parseInt(ad.style.top);

if (ad.offsetWidth + curLeft > document.body.clientWidth + document.body.scrollLeft - 1) {

curLeft = document.body.scrollLeft + document.body.clientWidth - ad.offsetWidth;

ad.DirH = false;

}

if (ad.offsetHeight + curTop > document.body.clientHeight + document.body.scrollTop - 1) {

curTop = document.body.scrollTop + document.body.clientHeight - ad.offsetHeight;

ad.DirV = false;

}

if (curLeft 

curLeft = document.body.scrollLeft;

ad.DirH = true;

}

if (curTop 

curTop = document.body.scrollTop;

ad.DirV = true;

}

ad.style.left = curLeft + (ad.DirH ? 1 : -1) + "px";

ad.style.top = curTop + (ad.DirV ? 1 : -1) + "px";

}

}

}

var ad = Rimifon.NewFloatAd("http://www.jb51.net/images/logo.gif",false,true);

ad.style.left = 500;

ad.style.top = 456;

ad.Image.width = 88;

ad.Image.height = 31;

  • 1
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值