教程集 www.jiaochengji.com
教程集 >  脚本编程  >  javascript  >  正文 Js对联广告代码示例(入门)

Js对联广告代码示例(入门)

发布时间:2015-03-12   编辑:jiaochengji.com
分享一例js实现的对联广告代码,很简单,适合新手朋友参考学习下。

本节内容:
Js对联广告代码

例子:
 

复制代码 代码示例:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>标准对联广告Js代码 - www.jiaochengji.com</title>
<style type="text/css">
<!--
#lovexin12,#lovexin14{
width:90px;
height:230px;
background-color:#ededed;
border:1px solid #ddd;
}
html,body{
height:1203px;
}
#mm{
height:1000px;
}
-->
</style>
<script language="JavaScript" type="text/javascript">
lastScrollY=0;
function heartBeat(){
var diffY;
if (document.documentElement && document.documentElement.scrollTop)
diffY = document.documentElement.scrollTop;
else if (document.body)
diffY = document.body.scrollTop
else
{/*Netscape stuff*/}
percent=.1*(diffY-lastScrollY);
if(percent>0)percent=Math.ceil(percent);
else percent=Math.floor(percent);
document.getElementById("lovexin12").style.top=parseInt(document.getElementById
("lovexin12").style.top)+percent+"px";
document.getElementById("lovexin14").style.top=parseInt(document.getElementById
("lovexin12").style.top)+percent+"px";
lastScrollY=lastScrollY+percent;
}
suspendcode12="<DIV id=/"lovexin12/" style='left:2px;POSITION:absolute;TOP:120px;'>ad1</div>"
suspendcode14="<DIV id=/"lovexin14/" style='right:2px;POSITION:absolute;TOP:120px;'>ad2</div>"
document.write(suspendcode12);
document.write(suspendcode14);
window.setInterval("heartBeat()",1);
</script>
</head>
<body>
<div id="mm"></div>
</body>
</html>

您可能感兴趣的文章:
Js对联广告代码示例(入门)
jquery宽屏特效之可关闭两边飘浮对联广告
js全屏漂浮广告代码 移入光标停止移动
js特效之定时展开、收缩广告的代码
JS右下角悬浮广告代码的简单示例
Google搜索联盟”和“adsense for search”
网站广告分析专用名词
Google Adsense 的教程
CSS js Cookie实现的固定页脚广告条例子
百度空间挂GG广告

[关闭]
~ ~