色尼玛亚洲综合影院,亚洲3atv精品一区二区三区,麻豆freexxxx性91精品,欧美在线91

用jquery實現等比例縮放圖片效果插件

復制代碼 代碼如下:
jQuery.fn.autoZoomLoadImage = function(scaling, width, height, loadPic) {
if (loadPic == null) loadPic = "Loading.gif";
return this.each(function() {
var t = $(this);
var src = $(this).attr("src");
var img = new Image();
//alert("Loading")
img.src = src;
//自動縮放圖片
var autoScaling = function() {
if (scaling) {
if (img.width > 0 && img.height > 0) {
if (img.width / img.height >= width / height) {
if (img.width > width) {
t.width(width);
t.height((img.height * width) / img.width);
}
else {
t.width(img.width);
t.height(img.height);
}
}
else {
if (img.height > height) {
t.height(height);
t.width((img.width * height) / img.height);
}
else {
t.width(img.width);
t.height(img.height);
}
}
}
}
}
//處理ff下會自動讀取緩存圖片
if (img.complete) {
//alert("getToCache!");
autoScaling();
return;
}
$(this).attr("src", "");
var loading = $("<img alt=/"加載中/" title=/"圖片加載中/" src=/"" + loadPic + "/" />");
t.hide();
t.after(loading);
$(img).load(function() {
autoScaling();
loading.remove();
t.attr("src", this.src);
t.show();
//alert("finally!")
});
});
}

JavaScript技術用jquery實現等比例縮放圖片效果插件,轉載需保留來源!

鄭重聲明:本文版權歸原作者所有,轉載文章僅為傳播更多信息之目的,如作者信息標記有誤,請第一時間聯系我們修改或刪除,多謝。

主站蜘蛛池模板: 宜州市| 光山县| 班玛县| 奉贤区| 连平县| 卓尼县| 兴和县| 丹棱县| 修文县| 德钦县| 荥阳市| 鞍山市| 洛川县| 辉南县| 石嘴山市| 开封县| 九江县| 永胜县| 大港区| 亚东县| 信宜市| 岢岚县| 固阳县| 光山县| 余庆县| 望城县| 璧山县| 岳西县| 福海县| 塔城市| 富宁县| 合江县| 绩溪县| 长子县| 景宁| 渑池县| 长宁区| 隆德县| 丹东市| 错那县| 兴海县|