-------------------------------------------------------------------------------------------------------------
img.item-avatar {
width: 100%;
height: 100%;
objec-fit: cover;
}
-------------------------------------------------------------------------------------------------------------
1 DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> 2 <html> 3 <head> 4 <title> ResizeImage title> 5 <meta name="Author" content="Ryan Shaw"> 6 <meta name="Keywords" content="Javascript,js,css,img,margin,onload,onchange"> 7 <meta name="Description" content="image preview and autoresize"> 8 <style type="text/css"> 9 .form-txt { 10 height: 22px; 11 padding-left: 3px; 12 line-height: 22px; 13 background-color: #FFFFFF; 14 border: 1px solid #BBBBBB; 15 vertical-align: middle; 16 width: 200px; 17 color: #666; 18 font-size: 12px; 19 } 20 .release-hd{ background:#FFFFFF; border:1px solid #e5e5e5; padding:15px;} 21 .item { margin:0 auto; padding-bottom: 10px; overflow: hidden; height:24px;} 22 .item-name { float: left; font-size: 12px; padding-right: 8px; padding-top: 0px; text-align: right; width: 100px; color:#617b24; font-weight:700;} 23 style> 24 <script type="text/javascript"> 25 // 不喜欢定义全局变量的同学可以不在这儿定义,我没有使用,用起来的话要好些个人认为 26 var MAX_WIDTH = 300; // 最大宽度 27 var MAX_HEIGHT = 200; // 最大高度 28 29 // 预览图片 30 function previewImage(file,order) 31 { 32 var div = document.getElementById("preview"); 33 if (file.files && file.files[0]) 34 { 35 div.innerHTML = ""; 36 var img = document.getElementById("imghead"); 37 var reader = new FileReader(); 38 reader.onload = function(evt){ 39 AutoResizeImage(300,200,img,evt.target.result); 40 } 41 reader.readAsDataURL(file.files[0]); 42 } 43 else 44 { 45 div.innerHTML = ""; 46 var img = document.getElementById("imghead"); 47 AutoResizeImage(300,200,img,file.value); 48 } 49 } 50 51 // 缩放图片,imgSrc用户延迟加载图片url 52 function AutoResizeImage(maxWidth,maxHeight,objImg,imgSrc){ 53 var img = new Image(); 54 img.src = imgSrc || objImg.src; 55 var hRatio; 56 var wRatio; 57 var Ratio = 1; 58 var w = img.width; 59 var h = img.height; 60 wRatio = maxWidth / w; 61 hRatio = maxHeight / h; 62 if (maxWidth ==0 && maxHeight==0){ 63 Ratio = 1; 64 }else if (maxWidth==0){ 65 if (hRatio<1) Ratio = hRatio; 66 }else if (maxHeight==0){ 67 if (wRatio<1) Ratio = wRatio; 68 }else if (wRatio<1 || hRatio<1){ 69 Ratio = (wRatio<=hRatio?wRatio:hRatio); 70 } 71 if (Ratio<1){ 72 w = w * Ratio; 73 h = h * Ratio; 74 } 75 objImg.style.height = Math.round(h) + "px"; 76 objImg.style.width = Math.round(w) + "px"; 77 78 if(h < maxHeight) { // 纵向有空余空间 79 objImg.style.marginTop = Math.round((maxHeight - h) / 2) + "px"; 80 } 81 if(w < maxWidth) { // 横向有空余空间 82 objImg.style.marginLeft = Math.round((maxWidth - w) / 2) + "px"; 83 } 84 if(!!!objImg.src) 85 objImg.src = imgSrc; 86 } 87 script> 88 head> 89 90 <body> 91 <div class="release-hd"> 92 <table> 93 <tbody> 94 <tr> 95 <td> 96 <p class="item"> 97 <label class="item-name">图片:label> 98 <input class="form-txt" type="file" name="adPic" onchange=previewImage(this)> 99 p> 100 <p class="item"> 101 <label class="item-name">链接:label> 102 <input class="form-txt" type="text" name="adUrl" value=""> 103 p> 104 <p class="item" style="height:72px"> 105 <label class="item-name">主题:label> 106 <textarea name="adTitle" cols=30 rows=10 style="height:66px" maxlength="250" class="form-txt">textarea> 107 p> 108 <span style="height:26px; font-weight:700; line-height:26px;color:#030; border:solid 1px #666;float:right; margin-right:10px;"> 109 <input type="button" style="height:26px;border: 0 none;color:#006600; width:60px;" value="保存" /> 110 span> 111 td> 112 <td> 113 <div id="preview"> 114 <img id="imghead" width=300 height=200 border=0 src="http://su.bdimg.com/static/skin/img/logo_white.png" onload=AutoResizeImage(300,200,this)> 115 div> 116 td> 117 tr> 118 tbody> 119 table> 120 div> 121 body> 122 html>
快速获取图片的宽高其实是为了预先做好排版样式布局做准备,通过快速获取图片宽高的方法比onload方法要节省很多时间,甚至一分钟以上都有可能,并且这种方法适用主流浏览器包括IE低版本浏览器。
我们一步一步进入这个过程。
1
2
3
4
5
6
7
8
9
10
11
|
// 图片地址 后面加时间戳是为了避免缓存
var
img_url =
'http://www.qttc.net/static/upload/2013/13643608813441.jpg?'
+Date.parse(
new
Date());
// 创建对象
var
img =
new
Image();
// 改变图片的src
img.src = img_url;
// 打印
alert(
'width:'
+img.width+
',height:'
+img.height);
|
执行:
宽高都是0的这个结果很正常,因为图片的相关数据都没有被加载前它的宽高默认就是0
于是可以这么优化!
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
// 图片地址 后面加时间戳是为了避免缓存
var
img_url =
'http://www.qttc.net/static/upload/2013/13643608813441.jpg?'
+Date.parse(
new
Date());
// 创建对象
var
img =
new
Image();
// 改变图片的src
img.src = img_url;
// 加载完成执行
img.onload =
function
(){
// 打印
alert(
'width:'
+img.width+
',height:'
+img.height);
};
|
执行:
通过onload就能获取到图片的宽高了。但onload大一点的图通常都比较慢,不实用,但只要图片被浏览器缓存,那么图片加载几乎就不用等待即可触发onload,我们要的是占位符。所以有些人通过缓存获取也可以这么写。
为了测试缓存效果,注意以下测试图片的url都不加时间戳
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
// 图片地址
var
img_url =
'http://www.qttc.net/static/upload/2013/13643608813441.jpg'
;
// 创建对象
var
img =
new
Image();
// 改变图片的src
img.src = img_url;
// 判断是否有缓存
if
(img.complete){
// 打印
alert(
'from:complete : width:'
+img.width+
',height:'
+img.height);
}
else
{
// 加载完成执行
img.onload =
function
(){
// 打印
alert(
'from:onload : width:'
+img.width+
',height:'
+img.height);
};
}
|
第一次执行,永远是onload触发
你再刷新,几乎都是缓存触发了
从缓存里读取图片的宽高不用说,非常方便快捷,今天我们要解决的是没有缓存而又快速的相比onload更快的方式去获取图片的宽高。我们常常知道有些图片虽然没有完全down下来,但是已经先有占位符,然后一点一点的加载。既然有占位符那应该是请求图片资源服务器响应后返回的。可服务器什么时候响应并返回宽高的数据没有触发事件,比如onload事件。于是催生了第四种方法
看看以下例子,为了避免从缓存里读取数据,每一次请求都带时间戳:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
// 图片地址
var
img_url =
'http://www.qttc.net/static/upload/2013/13643608813441.jpg?'
+Date.parse(
new
Date());
// 创建对象
var
img =
new
Image();
// 改变图片的src
img.src = img_url;
// 定时执行获取宽高
var
check =
function
(){
document.body.innerHTML +=
'
;
};
var
set = setInterval(check,40);
// 加载完成获取宽高
img.onload =
function
(){
document.body.innerHTML +=
'
;
// 取消定时获取宽高
clearInterval(set);
};
|
FireFox
IE7 8 9 10
Chrome
通过以上测试,我们发现定时检测图片宽高的方式要比onload快多了,打印的行数越多表示onload时间越长,40毫秒执行一次,基本100毫秒内就能获取图片的宽高,chrome甚至在第一次循环的时候就已经获得数据。从以上数据来分析,其实我们可以在定时函数里判断只要图片的宽高都大于0就表示已经获得正确的图片宽高。我们把时间打上,来看看通过定时获取宽高或者onload获取宽高所需要多少时间。
代码:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
// 记录当前时间戳
var
start_time =
new
Date().getTime();
// 图片地址
var
img_url =
'http://b.zol-img.com.cn/desk/bizhi/image/2/2560x1600/1365477614755.jpg?'
+start_time;
// 创建对象
var
img =
new
Image();
// 改变图片的src
img.src = img_url;
// 定时执行获取宽高
var
check =
function
(){
// 只要任何一方大于0
// 表示已经服务器已经返回宽高
if
(img.width>0 || img.height>0){
var
diff =
new
Date().getTime() - start_time;
document.body.innerHTML +=
'
;
clearInterval(set);
}
};
var
set = setInterval(check,40);
// 加载完成获取宽高
img.onload =
function
(){
var
diff =
new
Date().getTime() - start_time;
document.body.innerHTML +=
'
;
};
|
FireFox:
IE
Chrome
这是一张2560 * 1600大小的图片,各浏览器执行结果都能看到通过快速获取图片大小的方法几乎都在200毫秒以内,而onload至少五秒以上,这差别之大说明快速获取图片宽高非常实用。
转:http://www.qttc.net/201304304.html
$("#image")[0].addEventListener('load', function() {
if($("#image")[0] && $("#image")[0].naturalHeight > 0) {
hRatio = 420 / $("#image")[0].naturalHeight;
wRatio = 680 / $("#image")[0].naturalWidth;
if (wRatio<1 || hRatio<1){
Ratio = (wRatio<=hRatio?wRatio:hRatio);
} else if(wRatio>1 || hRatio>1) {
Ratio = (wRatio<=hRatio?hRatio:wRatio);
}
$(".ms").remove();
for (var i = 0; i < faceList.length; i++) {
htmlstr += '';
}
$('#faceList').append(htmlstr);
}
}, false);