当前位置:Gxlcms > JavaScript > 鼠标滚轮改变图片大小的示例代码

鼠标滚轮改变图片大小的示例代码

时间:2021-07-01 10:21:17 帮助过:3人阅读

鼠标滚轮改变图片大小的示例代码
<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://files.jb51.net/file_images/article/201311/20131120101711.png" style="zoom:1;"

onmousewheel='return onWheelZoom(this)'></a>

人气教程排行