jQuery Wheelzoom
A plugin to zoom IMG elements on mousewheel or touchpad scroll.
Demo

Download
Released under the MIT License.
Compatible with: Chrome, Firefox 17+, Safari, Opera, Internet Explorer 9+.
Usage:
$('img').wheelzoom();
// or zoom sets the zoom percent.
$('img').wheelzoom({zoom:0.05});
// zooming out can be triggered by calling 'wheelzoom.reset'
$('img').trigger('wheelzoom.reset')
Wheelzoom doesn't change the DOM. It works by sizing and positioning background-size and background-position styles.
Wheelzoom replaces an img's background-image with it's src. Then the src is set to a transparent PNG. The benefit to using a background-image is that plugin does not change the DOM or the positioning of the img element. This means that the plugin should Just Work⢠regardless of your specific CSS or markup. The drawback that there is no support for background-sizing in older browsers (IE8). The img element is left unmodified for unsupported browsers.
The source is short and well commented if you are curious to how it works. Email me if you run into any bugs.
Hey,
Follow me on Twitter and Github, that's where I'm most active these days. I welcome email (), but I'm afraid I no longer have time to answer personal requests for help regarding my plugins or posts. Thanks!