jQThumb 是一款基于 jQuery 的缩略图插件,它能够很方便的制作指定的尺寸的缩略图。 它支持 IE6 从 jQuery >=v1.3 或 Zepto (with zepto-data plugin) >=v1.1.3。
经测试支持的浏览器:
- Google Chrome
- Mozilla Firefox
- Safari
- Internet Explorer 6, 7, 8, 9 and 10
$('img').jqthumb({
classname: 'jqthumb', // 生成缩略图的 div 类名. 默认是 jqthumb
width: '100%', // 剪裁后新图片的宽度. 默认是 100px.
height: '100%', // 剪裁后新图片的高度. 默认是 100px.
position: {
x: '50%', // 图片 x 方向的位置. 默认 50%. 50% 的意思是图片横向的中心.
y: '50%' // 图片 Y 方向的位置. 默认 50%. 50% 的意思是图片纵向的中心.
},
source: 'src', // 图像资源的属性. 默认 src.
show: true, // TRUE = 处理后立即显示. FALSE = do not show it. DEFAULT IS TRUE.
responsive: 20, // 只在旧的浏览器中使用. 0 to disable. DEFAULT IS 20
zoom: 1, // 放大倍数, 2 图片实际大小的2倍. DEFAULT IS 1
method: 'auto', // 3 methods available: "auto", "modern" and "native". DEFAULT IS auto
before: function (oriImage) { // 每张图片开始处理前回调函数.
alert("I'm about to start processing now...");
},
after: function (imgObj) { // 当每张图片剪裁后回调函数.
console.log(imgObj);
},
done: function (imgArray) { // 所有图片都剪裁后的回调函数
for (i in imgArray) {
$(imgArray[i]).fadeIn();
}
}
});
参考demo: http://www.bcty365.com/content-55-525-1.html
github :https://github.com/pakcheong/jqthumb