很多时间特别是文章都会有图片是吧
如果我们固定图片大小那就会变形了
影响美观
现在我们来一个实用的利用jquery来控制图片等比例缩放代码吧
当然这是只等比例缩放图片大小的一种方法哦
还有css
js等
很多时间特别是文章都会有图片是吧如果我们固定图片大小那就会变形了影响美观现在我们来一个实用的利用jquery来控制图片等比例缩放代码吧当然这是只等比例缩放图片大小的一种方法哦还有css教程网页特效等
jqueryfnautozoomloadimage = function(scaling width height loadpic) {
if (loadpic == null) loadpic = "loadinggif";
return thiseach(function() {
var t = $(this);
var src = $(this)attr("src");
var img = new image();
//alert("loading")
imgsrc = src;
//自动缩放图片
var autoscaling = function() {
if (scaling) {
if (imgwidth > && imgheight > ) {
if (imgwidth / imgheight >= width / height) {
if (imgwidth > width) {
twidth(width);
theight((imgheight * width) / imgwidth);
}
else {
twidth(imgwidth);
theight(imgheight);
}
}
else {
if (imgheight > height) {
theight(height);
twidth((imgwidth * height) / imgheight);
}
else {
twidth(imgwidth);
theight(imgheight);
}
}
}
}
}
//处理ff下会自动读取缓存图片 jquery图片等比例缩放程序
if (imgcomplete) {
//alert("gettocache!");
autoscaling();
return;
}
$(this)attr("src" "");
var loading = $("<img alt="加载中" title="图片加载中" src="" + loadpic + "" />");
thide();
tafter(loading);
$(img)load(function() {
autoscaling();
loadingremove();
tattr("src" thissrc);
tshow();
//alert("finally!")
});
});
}