onMouseWheel <script> <BR>var count = 10; <BR>function Picture() <BR>{ <BR>count = Counting(count); <BR>Resize(count); <BR>return false; <BR>} <BR>function Counting(count){ <BR>if (event.wheelDelta >= 120) <BR>count++; <BR>else if (event.wheelDelta <= -120) <BR>count--; <BR>return count; <BR>} <BR>function Resize(count){ <BR>oImage.style.zoom = count + '0%'; <BR>oCounter.innerText = count + '0%'; <BR>} <BR></script>
Size =
100%