鼠标滚轮改变图片大小的示例代码
<script>
function onWheelZoom(obj){
zoom = parseFloat(obj.style.zoom);
tZoom = zoom + (event.wheelDelta>0 ? 0.05 : -0.05);
if( tZoom > 1 || tZoom<0.1 ) return true;
obj.style.zoom=tZoom;
return false;
}
</script>
<a href="javascript:window.close()"><img
src=https://yunqi-tech.oss-cn-hangzhou.aliyuncs.com/20131120101711.png style="zoom:1;"
onmousewheel='return onWheelZoom(this)'></a>
时间: 2024-11-03 00:06:07