risewindow.js
上传用户:jhtang88
上传日期:2014-01-27
资源大小:28528k
文件大小:1k
源码类别:

Jsp/Servlet

开发平台:

Java

  1. function moveWindowUp() {
  2.  amount = parseInt((winHeight-total) * 0.2);
  3.  total += amount;
  4.  if(total<winHeight && amount>0) {
  5.   try {
  6.   window.moveBy(0, (-1) * amount);
  7.   }
  8.   catch(e){
  9.   }
  10.  }
  11.  else {
  12.   clearInterval(handle);
  13.  }
  14. }
  15. var amount=0;
  16. var total=0;
  17. var handle ;
  18. var winHeight, winWidth;
  19. // 启动滚动窗口
  20. function START(){
  21.  winHeight= document.body.offsetHeight + 30;
  22.  winWidth = document.body.offsetWidth + 10 ;
  23.  window.moveTo(window.screen.availWidth-winWidth, window.screen.availHeight);
  24.  handle = setInterval("moveWindowUp()",70);
  25. }