Jquery中文网 www.jquerycn.cn
Jquery中文网 >  脚本编程  >  javascript  >  正文 js全屏漂浮广告代码 移入光标停止移动

js全屏漂浮广告代码 移入光标停止移动

发布时间:2015-07-08   编辑:www.jquerycn.cn
本文介绍了js全屏漂浮广告的实现代码,当移入光标时停止移动效果,不错的js漂浮广告代码,有需要的朋友参考下。

例子,js实现漂浮广告效果的代码。
 

复制代码 代码示例:
<!doctype html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>js全屏漂浮广告_www.jquerycn.cn</title>
<style type="text/css">
div#roll{width:100px;height:100px; background-color:#000; color:#fff; position:absolute;}
</style>
</head>
<body>
<div>
<div><h2>js全屏漂浮广告,移入光标停止移动</h2></div>
</div>
<div id="roll">我是广告<br />www.jquerycn.cn</div>
<script type="text/javascript">
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 () {
this.roll.style.left = this.x + 'px';
this.roll.style.top = this.y + 'px';
this.x = this.x + (this.statusx ? -1 : 1)
if (this.x < 0) { this.statusx = 0 }
if (this.x > this.winw) { this.statusx = 1 }
this.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) };
</script>
</body>
</html>

您可能感兴趣的文章:
js全屏漂浮广告代码 移入光标停止移动
JS全屏漂浮广告、移入光标停止移动
js随机漂浮广告代码示例
js漂浮广告代码 js弹性漂浮广告
js实现漂浮广告效果的代码
JS悬浮移动窗口(悬浮广告)的特效代码
漂浮广告的js代码 js图片漂浮特效
JS全屏漂浮广告代码
js漂浮广告代码大全
深入解析JavaScript操纵窗口的方法

关键词: 漂浮广告代码  全屏漂浮   
[关闭]