广告展开后没有上去
var h = 0;
//增加高度函数addH()
function addh() {
if(h <300){
h += 5;
document.getElementById('pn').style.height = h + 'px';
}else{
return;
}
setTimeout('addh()', 30);
}
//网页加载完毕时,调用增加高度函数addH(),等待5秒钟后调用减少高度函数subh()。
window.onload = function showAds(){
addh();
setTimeout('subh()', 5000);
}
// 减少高度函数subH()
function subh() {
if(h > 0){
h -= 5;
document.getElementById('ad').style.height = h + 'px';
} else{
document.getElementById('ad').style.display = 'none';
return;
}
setTimeout('subh()', 30);
}
</script>