<script>
size=15
function zoomFontSize(){
swt = event.wheelDelta
if( swt >= 120 && size > 0) size--
else size++
document.body.style.fontSize=size
}
</script>
<body onmousewheel="zoomFontSize()">
マウスホイールで拡大縮小します
投稿者 tato : 2004年06月18日 22:14
| トラックバック