Skip to content Skip to sidebar Skip to footer

Image Resize Script

I'm searching a javascript that can resize images similar to script thats available as a plugin in vBulletin CMS: I want the script to be used in blogger blog so that all images i

Solution 1:

Something like a lightbox, perhaps?

I know the specific interaction you're asking about, and personally, I've always found it really obnoxious.

Solution 2:

If you don't want to use a server side script to automatically create a smaller version of the image that you would link to the larger version, I wouldn't recommend using JavaScript to resize an image either. I'd recommend setting the image's dimensions in CSS and then attaching a click handler with JS that showed the image in some sort of overlay (or just using HTML to link to the larger image file).

Post a Comment for "Image Resize Script"