| Login

Search this Blog


Links I like to keep around


Here are the most recent postings to this blog. Use the archive calendar or search to find other entries.
Apr8

Written by:R Teachout
4/8/2007 6:43 PM 

Javascript Zoom when Mouse Scrollwheel is used over an image...

<script
function bbimg($obj)
{
 var zoom = parseInt($obj.style.zoom, 10) || 100;
 zoom += event.wheelDelta / 12;
 if (zoom > 0) $obj.style.zoom = zoom + '%';
 return false;
}
</script>

<img src="" OnMousewheel='return bbimg(this)'>

Tags:

I do not fear computers. I fear the lack of them.
-Isaac Asimov

Inspired by Nina