最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

用jquery實(shí)現(xiàn)等比例縮放圖片效果插件

 更新時(shí)間:2010年07月24日 00:04:31   作者:  
用jquery實(shí)現(xiàn)圖片等比例縮放的代碼,以插件的形式編寫,需要的朋友可以參考下。
復(fù)制代碼 代碼如下:

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;
//自動(dòng)縮放圖片
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下會(huì)自動(dòng)讀取緩存圖片
if (img.complete) {
//alert("getToCache!");
autoScaling();
return;
}
$(this).attr("src", "");
var loading = $("<img alt=\"加載中\(zhòng)" title=\"圖片加載中\(zhòng)" src=\"" + loadPic + "\" />");
t.hide();
t.after(loading);
$(img).load(function() {
autoScaling();
loading.remove();
t.attr("src", this.src);
t.show();
//alert("finally!")
});
});
}

相關(guān)文章

最新評(píng)論

沙田区| 安吉县| 红安县| 江都市| 铜鼓县| 湖南省| 揭西县| 镇康县| 剑川县| 哈密市| 土默特右旗| 珲春市| 高要市| 乌什县| 贺州市| 邻水| 东兰县| 四川省| 荣昌县| 蒲江县| 涡阳县| 郴州市| 云霄县| 孟州市| 茌平县| 竹山县| 凤台县| 巩义市| 迁西县| 历史| 麻城市| 开原市| 上虞市| 静海县| 屏东市| 阳春市| 新泰市| 上犹县| 佛坪县| 蒙城县| 高陵县|