wy_trip_uppic.js
上传用户:hnxqingdao
上传日期:2013-05-22
资源大小:1283k
文件大小:1k
源码类别:

其他行业

开发平台:

ASP/ASPX

  1. adTime=8;
  2. chanceAd=1;
  3. var ns=(document.layers);
  4. var ie=(document.all);
  5. var w3=(document.getElementById && !ie);
  6. adCount=0;
  7. function initAd(){
  8.         if(!ns && !ie && !w3) return;
  9.         if(ie)                adDiv=eval('document.all.sponsorAdDiv.style');
  10.         else if(ns)        adDiv=eval('document.layers["sponsorAdDiv"]');
  11.         else if(w3)        adDiv=eval('document.getElementById("sponsorAdDiv").style');
  12.         randAd=Math.ceil(Math.random()*chanceAd);
  13.         if (ie||w3)
  14.         adDiv.visibility="visible";
  15.         else
  16.         adDiv.visibility ="show";
  17.         if(randAd==1) showAd();
  18. }
  19. function showAd(){
  20. if(adCount<adTime*10){adCount+=1;
  21.         if (ie){documentWidth  =document.body.offsetWidth/2+document.body.scrollLeft-20;
  22.         documentHeight =document.body.offsetHeight/2+document.body.scrollTop-20;}
  23.         else if (ns){documentWidth=window.innerWidth/2+window.pageXOffset-20;
  24.         documentHeight=window.innerHeight/2+window.pageYOffset-20;}
  25.         else if (w3){documentWidth=self.innerWidth/2+window.pageXOffset-20;
  26.         documentHeight=self.innerHeight/2+window.pageYOffset-20;}
  27.         adDiv.left=documentWidth-100;adDiv.top =documentHeight-0;
  28.         setTimeout("showAd()",100);}
  29. }
  30. function closeAd(){
  31. if (ie||w3)
  32. adDiv.display="none";
  33. else
  34. adDiv.visibility ="hide";
  35. }