廣告展開后沒有上去
? ? ? var h = 0;
? ? ? ??
? ? ? ? //增加高度函數(shù)addH()
? ? ? ? ? ??
? ? ? ? function addh() { ?
? ? ? ? ? ?if(h <300){
? ? ? ? ? ? ? ?h += 5;
? ? ? ? ? ? ? ?document.getElementById('pn').style.height = h + 'px';
? ? ? ? ? ?}else{
? ? ? ? ? ? ? ?return;
? ? ? ? ? ?}
setTimeout('addh()', 30);
? ? ? ? }
? ? ? ??
? ? ? ?//網(wǎng)頁加載完畢時,調(diào)用增加高度函數(shù)addH(),等待5秒鐘后調(diào)用減少高度函數(shù)subh()。?
? ? ? ? window.onload = function showAds(){
? ? ? ? ? ? addh();
? ? ? ? ? ? setTimeout('subh()', 5000);
? ? ? ? }
? ? ??
? ? ??
? ? ? // 減少高度函數(shù)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>
2016-05-25
?document.getElementById('ad').style.height = h + 'px'; ? ?把ad換成pn