本文实例讲述了jquery实现的鼠标滚轮控制图片缩放功能。分享给大家供大家参考,具体如下:
<!doctype html public "-//w3c//dtd xhtml 1.0 transitional//en" "http://www.w3.org/tr/xhtml1/dtd/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="content-type" content="text/html; charset=utf-8" /> <title>www.jb51.net 鼠标滚轮控制图片缩放</title> <script type="text/javascript" src="jquery-1.7.2.min.js"></script> <script type="text/javascript"> $(function() { function zoomimg(o) { var zoom = parseint(o.style.zoom, 10) || 100; zoom += event.wheeldelta / 2; //可适合修改 if (zoom > 0) o.style.zoom = zoom + '%'; } $(document).ready(function() { $("img").bind("mousewheel", function() { zoomimg(this); return false; }); }); }) </script> </head> <body> <center> <img src="1.jpg"/> </center> </body> </html>
运行效果:
相关推荐:
jquery图片缩放插件smartzoom使用方法分享
php图片处理之使用imagecopyresampled函数实现图片缩放例子
php图片缩放实现方法_php教程
以上就是jquery实现鼠标滚轮控制图片缩放的详细内容。
