LeftBottom.js
上传用户:jisenq
上传日期:2014-06-29
资源大小:7216k
文件大小:2k
源码类别:

数据库编程

开发平台:

ASP/ASPX

  1. if (navigator.appName == "Netscape")
  2. document.ns = navigator.appName == "Netscape"
  3. window.screen.width>800 ? imgheight=190:imgheight=180
  4. window.screen.width>800 ? imgleft=20:imgleft=30
  5. function LeftBottomload()
  6. {
  7.    if (navigator.appName == "Netscape")
  8.      {
  9.  document.LeftBottom.pageY=pageYOffset+window.innerHeight-imgheight;
  10.      document.LeftBottom.pageX=imgleft;
  11.      LeftBottomMove();
  12.      }
  13.    else
  14.     {
  15. LeftBottom.style.posTop=parseInt(document.body.scrollTop)+parseInt(window.screen.height)-parseInt(LeftBottom.style.height);
  16. //alert(parseInt(document.body.scrollTop));
  17. //alert(parseInt(window.screen.height));
  18. //alert(parseInt(LeftBottom.style.height));
  19. //alert(parseInt(document.body.scrollTop)+parseInt(document.body.clientHeight)-parseInt(LeftBottom.style.height));
  20. LeftBottom.style.left=imgleft;
  21. LeftBottomMove();
  22.     }
  23. }
  24. function LeftBottomMove()
  25. {
  26.    if(document.ns)
  27.     {
  28. document.LeftBottom.top=pageYOffset+window.innerHeight-imgheight;
  29. document.LeftBottom.left=imgleft;
  30. setTimeout("LeftBottomMove();",80)
  31.     }
  32.   else
  33.    {
  34. LeftBottom.style.top=document.body.scrollTop+document.body.offsetHeight-imgheight;
  35. LeftBottom.style.left=imgleft;
  36. setTimeout("LeftBottomMove();",80)
  37.    }
  38. }
  39. function LeftBottomReload(LBRTF) 
  40. {
  41.   if (LBRTF==true) with (navigator) 
  42.    {
  43.     if ((appName=="Netscape")&&(parseInt(appVersion)==4)) 
  44.       {
  45.        document.LeftBottomWidth=innerWidth; 
  46.    document.LeftBottomHeight=innerHeight; 
  47.    onresize=MM_reloadPage; 
  48.    }
  49. }
  50.   else 
  51.    if (innerWidth!=document.LeftBottomWidth || innerHeight!=document.LeftBottomHeight) location.reload();
  52. }
  53. LeftBottomReload(true);
  54. LeftBottomload();