小麦子 发表于 2024-10-18 11:37:37

滑动展开后再收缩起来的广告代码

本帖最后由 小麦子 于 2024-10-18 23:43 编辑

一款基于 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>
<title>滑动展开后再收缩起来的广告代码</title>
<meta http-equiv="mrc-type" mrc="text/html; charset=utf-8" />
<script type="text/javascript">
var intervalId = null;
function myad(id,nStayTime,sState,nMaxHth,nMinHth){
this.stayTime=nStayTime*1000 || 3000;
this.maxHeigth=nMaxHth || 290;
this.minHeigth=nMinHth || 1;
this.state=sState || "down" ;
var obj = document.getElementById(id);
if(intervalId != null)window.clearInterval(intervalId);
function openBox(){
var h = obj.offsetHeight;
obj.style.height = ((this.state == "down") ? (h + 2) : (h - 2))+"px";
if(obj.offsetHeight>this.maxHeigth){
window.clearInterval(intervalId);
intervalId=window.setInterval(closeBox,this.stayTime);
}
if (obj.offsetHeight<this.minHeigth){
window.clearInterval(intervalId);
obj.style.display="none";
}
}
function closeBox(){
alixixi(id,this.stayTime,"up",nMaxHth,nMinHth);
}
intervalId = window.setInterval(openBox,10);
}
</script>
</head>
<body style="margin:0;padding:0;font-size:14px;">
<div id="codefans_net" style="background:#ff0;height:12px;overflow:hidden;">
<ul>
<li>提示:6秒钟后广告自动消失,可自定义时间及刷新再看效果!</li>
</ul>
</div>
<script type="text/javascript">
<!--
myad('codefans_net',6);
-->
</script>
</body>
</html>

kingkare 发表于 2024-10-19 13:11:00

看一下效果咋样

小麦子 发表于 2024-10-19 14:21:16

kingkare 发表于 2024-10-19 13:11
看一下效果咋样

快去试试吧。
页: [1]
查看完整版本: 滑动展开后再收缩起来的广告代码