在线等关于首页顶部收缩广告代码问题,快疯了
<script src="taobao/a.js"></script><div id="topAds_chk_show" style="margin-top:0px; margin-bottom:0px; width:956px; display:block;">
<a href="http://shop35576578. target="_blank">
<img src="taobao/shou3.gif" width="900" height="40" border="0" /></a><a href="javascript:close_chk_show();"><img src="taobao/shou4.gif" width="52" height="40" border="0" alt="关闭" /></a>
</div>
调用的JS文件内容为以下
function checktopAds()
{
return true;
}
function do_it()
{
if ( checktopAds() )
{
var anim = function()
{
n += 5;
if(n >= 45){
document.getElementById('topAds_chk_show').style.marginTop = "0";
window.clearInterval(t1);
}else{
document.getElementById('topAds_chk_show').style.marginTop = "-"+(45 - n)+"px";
}
},n=0;
var t1 = window.setInterval(anim,80);
}
}
function close_chk_show()
{
var anim = function()
{
n += 5;
if(n >= 45){
document.getElementById('topAds_chk_show').style.marginTop = "-45px";
window.clearInterval(t1);
}else{
document.getElementById('topAds_chk_show').style.marginTop = "-"+ n +"px";
}
},n=0;
var t1 = window.setInterval(anim,80);
}
问题现在就是我想在这个广告载入时是有动感的慢慢载入,就像关闭时慢慢退出一样,上面这代码是打开主页就显示广告,我要的效果就像支付宝(https://www.)首页的那个收缩广告一样,而且我还想加一句可以在一定时间内自己关闭广告慢慢退出的效果,求大家帮帮忙,在这感激不尽!