html 飘浮移动广告层,JS全屏漂浮广告、移入光标停止移动

本节内容:

JS全屏漂浮广告

例子:

复制代码 代码示例:

JS全屏漂浮广告-www.jquerycn.cn

div#roll{width:100px;height:100px; background-color:#000; color:#fff; position:absolute;}

JS全屏漂浮广告,移入光标停止移动

全屏漂浮广告的内容部分,jquery中文网倾情提供!!!
jquerycn.cn

/**

* JS全屏漂浮广告代码

* by www.jquerycn.cn

*/

var ggRoll = {

roll: document.getElementById("roll"),

speed: 20,

statusX: 1,

statusY: 1,

x: 100,

y: 300,

winW: document.documentElement.clientWidth - document.getElementById("roll").offsetWidth,

winH: document.documentElement.clientHeight - document.getElementById("roll").offsetHeight,

Go: function () {

thisthis.roll.style.left = this.x + 'px';

thisthis.roll.style.top = this.y + 'px';

thisthis.x = this.x + (this.statusX ? -1 : 1)

if (this.x < 0) { this.statusX = 0 }

if (this.x > this.winW) { this.statusX = 1 }

thisthis.y = this.y + (this.statusY ? -1 : 1)

if (this.y < 0) { this.statusY = 0 }

if (this.y > this.winH) { this.statusY = 1 }

}

}

var interval = setInterval("ggRoll.Go()", ggRoll.speed);

ggRoll.roll.onmouseover = function () { clearInterval(interval) };

ggRoll.roll.onmouseout = function () { interval = setInterval("ggRoll.Go()", ggRoll.speed) };

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值