jQuery实现的鼠标滚轮控制图片缩放功能实例
程序员文章站
2022-06-24 17:21:36
本文实例讲述了jquery实现的鼠标滚轮控制图片缩放功能。分享给大家供大家参考,具体如下:
本文实例讲述了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相关内容感兴趣的读者可查看本站专题:《jquery图片操作技巧大全》、《jquery切换特效与技巧总结》、《jquery扩展技巧总结》、《jquery常见经典特效汇总》及《jquery选择器用法总结》
希望本文所述对大家jquery程序设计有所帮助。