核心是style中的一个zoom属性,平时很少用到。其实不只是img可以缩放,任何一个div都可以。
代码:
<img src="../docs/images/1.png" onmousewheel="return zoomImg(this)">
<div style="width:100px;height:100px;background-color: red"onmousewheel="return zoomImg(this)"></div>
<script>
// js代码
function zoomImg(obj){
// 一开始默认是100%
let zoom = parseInt(obj.style.zoom, 10) || 100;
// 滚轮滚一下wheelDelta的值增加或减少120
zoom += event.wheelDelta/12;
if(zoom>0) {
obj.style.zoom = zoom + '%';
}
return false;
}
</script>复制代码