日期:2014-05-16 浏览次数:20389 次
来自:: http://www.weakweb.com
原文::http://www.weakweb.com/articles/349.html
如果不对图片设置宽高,则图片的显示的宽高就是图片的真实宽高。
<img src="hello.jpg" />
可以通过img标签或者Image对象的width和height属性来设置宽高,比如:
<img src="hello.jpg" width="100" heigth="100" />
或者
var image = new Image();
image.src = 'hello.jpg';
image.width = 100;
image.height = 100;
这两种方法的本质是一样的,就是通过图像的宽高属性来设置,这里需要注意的是同时设置了宽高其实只是宽度在起作用,它会按照设置的宽度和真实宽度等比例放大或者缩小。所以说这种方式设置宽高图片的宽高比例是不会变的,就是图片不会变形。
这种方法比较简单,代码如下:
img {
height: 100px;
width: 100px;
}
注意:这种方式设置的宽高都会起作用的,所以如果不是等比例设置会导致图片变形的,这一点是和通过属性设置是有本质区别的。如果怕图片变形还是通过属性设置吧,但是CSS设置比较方便,代码耦合性低。
图片的显示尺寸主要通过Image对象的width和height属性来获取的。如果没有设置过尺寸则获取的尺寸和原始尺寸是一致的,如果设置过则返回的是设置过的尺寸即实际显示尺寸。
<img id="logo" src="hello.jpg" />
var width = document.getElementById('logo').width;
var height = document.getElementById('logo').height;
获取图片的原始尺寸有2种方法,第一种是使用Image对象,即要获取的图片URL赋值给一个空的Image对象的src属性,然后再去读它的width和height属性就可以了,这种方法基本上所有的浏览器都是可以用的。代码如下:
var image = new Image();
image.src = 'hello.jpg';
var width = image.width;
var height = image.height;
第二种方法是通过Image对象新增加的两个属性naturalWidth和naturalHeight来实现的。目前是包括IE9+, chrome, firefox等浏览器都支持该属性。
<img id="logo" src="hello.jpg" />
var width = document.getElementById('logo').naturalWidth;
var height = document.getElementById('logo').naturalHeight;
在实际使用过程中可以先判断浏览器是否支持新的特性来决定使用哪种方式。
var image = document.getElementById('logo');
if (image.naturalWidth) {
//support the new attrubute
}