마우스 휠을 사용하여 이미지 크기를 변경하는 샘플 코드
<script> <br>function onWheelZoom(obj){ <br> Zoom = parseFloat(obj.style . Zoom); <br> tZoom = Zoom (event.wheelDelta>0 ? 0.05 : -0.05) <br> if( tZoom > 1 || tZoom<0.1 ) return true; tZoom ; false 반환 <BR></script>
src="http://files.jb51.net/file_images/article/201311/20131120101711.png" style="zoom:1;"
onmousewheel='return onWheelZoom(this)'>