程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> JSP編程 >> 關於JSP >> 用JSP實現DOS形式緩沖網頁

用JSP實現DOS形式緩沖網頁

編輯:關於JSP

<SCRIPT language=JavaScript type=text/JavaScript>
//改變圖片大小
function resizepic(thispic)
...{
if(thispic.width>700) thispic.width=700;
}
//無級縮放圖片大小
function bbimg(o)
...{
 var zoom=parseInt(o.style.zoom, 10)||100;
  zoom+=event.wheelDelta/12;
  if (zoom>0) o.style.zoom=zoom+%;
}
//雙擊鼠標滾動屏幕的代碼
var currentpos,timer;
function initialize()
...{
timer=setInterval ("scrollwindow ()",30);
}
function sc()
...{
clearInterval(timer);
}
function scrollwindow()
...{
currentpos=document.body.scrollTop;
window.scroll(0,++currentpos);
if (currentpos !=document.body.scrollTop)
sc();
}
document.onmousedown=sc
document.ondblclick=initialize

//更改字體大小
var status0=;
var curfontsize=10;
var curlineheight=18;
function fontZoomA()...{
  if(curfontsize>8)...{
    document.getElementById(fontzoom).style.fontSize=(--curfontsize)+pt;
    document.getElementById(fontzoom).style.lineHeight=(--curlineheight)+pt;
  }
}
function fontZoomB()...{
  if(curfontsize<64)...{
    document.getElementById(fontzoom).style.fontSize=(++curfontsize)+pt;
    document.getElementById(fontzoom).style.lineHeight=(++curlineheight)+pt;
  }
}
</SCRIPT>

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved