国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 編程 > JavaScript > 正文

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

2019-11-21 00:20:24
字體:
來源:轉載
供稿:網友
復制代碼 代碼如下:

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!")
});
});
}
發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 简阳市| 和田市| 桐柏县| 麻栗坡县| 府谷县| 迁西县| 黔江区| 娄底市| 上林县| 志丹县| 桃园市| 井陉县| 威宁| 兴义市| 岑溪市| 桐柏县| 清水河县| 博客| 莱阳市| 阿克苏市| 大方县| 万宁市| 五家渠市| 保德县| 南宁市| 剑川县| 乌兰察布市| 平定县| 晋城| 定边县| 吴川市| 环江| 富蕴县| 铜梁县| 星座| 宁武县| 嘉善县| 吉首市| 湖口县| 乐昌市| 津市市|