鼠标滚轮改变图片大小

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了鼠标滚轮改变图片大小相关的知识,希望对你有一定的参考价值。

<!DOCTYPE html">
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>通过鼠标滚动-放大缩小图片</title>
<meta name="description" content="">
<meta name="keywords" content="">
<link href="" rel="stylesheet">
<style>
    img{
        zoom: 100%;
    }
</style>
</head>
<script language="javascript">
    function bigimg(i)
    {
        var e=e || window.event;//window.event代表着事件对象的状态.只有在事件发生时生效

        var zoom = parseInt(i.style.zoom,10)||100;

        zoom += e.wheelDelta / 12;
        if(zoom > 0 )
        i.style.zoom=zoom+%;
        return false;
    }
</script>
<body>
<h3>请滚动鼠标滚轮-火狐浏览器不兼容</h3>
<center>
    <a target="_blank">
        <img src="img/wall7.jpg" width="461" height="277" border="1" onmousewheel="return bigimg(this)">
    </a>
</center>


</body>
</html>

 

以上是关于鼠标滚轮改变图片大小的主要内容,如果未能解决你的问题,请参考以下文章

IDEA鼠标滚轮前后改变代码字号大小

鼠标滚轮调整图片大小

C#怎么让画在picturebox中的图随鼠标滚轮放大缩小?

用js实现页面图片,以鼠标位置为中心,滚轮缩放图片

支持鼠标滚轮图片自适应的焦点图代码等

ntellijIDEA用鼠标滚轮调整代码文字大小