當前位置:學問君>實用文案>對聯>

js對聯廣告代碼

學問君 人氣:2.32W

導語:經典的對聯廣告代碼,JS代碼實現,很簡潔,也是通用的.代碼,隨着滾動條的滾動自動適應,對聯大小由CSS控制,這使得代碼修改起來更加方便快捷,不懂JS也沒有關係,大家可以試着做做看。

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "">
<html xmlns="">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>標準對聯廣告Js代碼</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 (mentElement && llTop)
diffY = llTop;
else if ()
diffY = llTop
else
{/*Netscape stuff*/}
percent=.1*(diffY-lastScrollY);
if(percent>0)percent=(percent);
else percent=r(percent);
lementById("lovexin12")=parseInt(lementById
("lovexin12"))+percent+"px";
lementById("lovexin14")=parseInt(lementById
("lovexin12"))+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>"
e(suspendcode12);
e(suspendcode14);
nterval("heartBeat()",1);
</script>
</head>
<body>
<div id="mm"></div>
</body>
</html>

js對聯廣告代碼