如何获取的原始尺寸大小?
如下,当给 img 设置一个固定的大小时,要怎样获取的原始尺寸呢?
#oImg{
width: 100px;
height: 100px;
}
<img src="images/testjpg" id="oImg" alt="">
方法一:
HTML5提供了一个新属性 naturalWidth / naturalHeight 可以直接获取的原始宽高。这两个属性在Firefox/Chrome/Safari/Opera及IE9里已经实现。
w = documentgetElementsByTagName("img")[0]naturalWidth;
h = documentgetElementsByTagName("img")[0]naturalHeight;
consolelog(w + ' ' + h);
打印出来的结果与原始尺寸相符。但有个前提是,必须在完全下载到客户端浏览器才能判断。
如果是不支持的版本浏览器,那可以用传统方法判断,如下:
var img = documentgetElementById("oImg"),
w,h;if (oImgnaturalWidth) {// HTML5 browsersw = oImgnaturalWidth;
h = oImgnaturalHeight;
} else {// IE 6/7/8var nImg = new Image();// nImgsrc = oImgsrc;nImgonload = function () {
w = nImgwidth;
h = nImgheight;
consolelog(w + " " + h)
}
nImgsrc = oImgsrc;}
此时为什么要加 onload 的原因是,可能没加载完成,导致的 width 、height 无法获取到。
这里还有有个点要注意, nImgsrc = oImgsrc 这段代码为什么要放在 nImgonload 函数后面? 这样做是为了兼容 ie 。ie 除了第一次加载时候获取正常,之后再刷新就没有反应了。其他大部分浏览器获取正常。这是什么原因呢?
原因也挺简单的,就是因为浏览器的缓存了。当加载过一次以后,如果再有对该的请求时,由于浏览器已经缓存住这张了,不会再发起一次新的请求,而是直接从缓存中加载过来。对于大部分浏览器,它们视图使这两种加载方式对用户透明,同样会引起的onload事件,而 ie 则忽略了这种同一性,不会引起的onload事件。。。一般情况下,可以用 complete 来判断是否加载完毕。对于 complete 属性来讲,IE是根据是否显示过来判断,就是说当加载的显示出来后,complete 属性的值才为true ,否则一直是false ,和以前是否加载过该张没有关系,即和缓存没有关系!可以写如下的函数来做到各个浏览器中预加载的兼容性。如下:
var img = documentgetElementById("oImg"),
w,h;if (oImgnaturalWidth) {
// HTML5 browsersw = oImgnaturalWidth;
h = oImgnaturalHeight;
} else {
// IE 6/7/8var nImg = new Image();
nImgsrc = oImgsrc;
if(nImgcomplete) { // 已经存在于浏览器缓存consolelog(nImgwidth + " " + nImgheight);
}else{
nImgonload = function () {
w = nImgwidth;
h = nImgheight;
consolelog(w + " " + h);
}
}
}
最后封装成函数,如下:
function getImgNaturalDimensions(oImg, callback) {var nWidth, nHeight;
if (!oImgnaturalWidth) { // 现代浏览器nWidth = oImgnaturalWidth;
nHeight = oImgnaturalHeight;
callback({w: nWidth, h:nHeight});
} else { // IE6/7/8var nImg = new Image();
nImgonload = function() { var nWidth = nImgwidth,
nHeight = nImgheight;
callback({w: nWidth, h:nHeight});
}
nImgsrc = oImgsrc;
}
}
var img = documentgetElementById("oImg");getImgNaturalDimensions(img, function(dimensions){
consolelog(dimensionsw);
});
方法二:(不需要再页面中展示)
将 img 放在页面中不可见的位置上,缺点是:这种方法需要浏览器加载这张
imgbox{// img 盒子width: 0;
overflow: hidden;
}
然后在去取宽高等信息:
function getImgNaturalDimensions2(oImg) {var nWidth, nHeight;if (!oImgnaturalWidth) { // 现代浏览器nWidth = oImgnaturalWidth;
nHeight = oImgnaturalHeight;return ({w: nWidth, h:nHeight});
} else { // IE6/7/8nWidth = oImgwidth;
nHeight = oImgheight;return ({w: nWidth, h:nHeight});
}
}var getImg = getImgNaturalDimensions2(img);
consolelog(getImg)
然而,到这里,是不是万事大吉了呢?答案当然是否定的。
你用这种方法做后,会发现你有时可以取得 img 的 width、height ,但有时会是个 0。原因见下节分析。
我们先看如何正常去取吧!
var img = documentgetElementById("oImg");
imgonload = function(){ //方法一 getImgNaturalDimensions(img, function(dimensions){
consolelog(dimensionsw);
}); //方法二
var getImg = getImgNaturalDimensions2(img);
consolelog(getImg);
}
只需在 imgonload 函数内去调用函数。
代码大致如下供参考:
var image=new Image();imagesrc=//你的背景的src;
var divelement = documentgetElementById(你的div的id);
divelementstyleheight=(imageheightdivelementoffsetWidth)/imagewidth + "px";
几个需要注意的地方是imagesrc=xxx后需要等待直到下载完成。但是如果这个脚本是在你的div已经初始化好之后调用的话,那么已经被下载过了,所以直接进行后面的就好。另外以styleheight来设置高度的话后面需要加单位,比如px
<html>
<head>
<script type="text/javascript">
function ready() {
var image = documentgetElementById("image");
alert(imageoffsetWidth + " " + imageoffsetHeight);
}
</script>
</head>
<body onload="ready();">
<img src="/ajpg" id="image" />
</body>
</html>
方法一:获取的宽高。可以用offsetWidth和offsetHeight;
方法二:
你先获取img标签标签元素。用getElementById()或者getElementsByClassName或者getElementsByTagName()都可以。
获取之后,如果你的img有width和height 属性,可以直接用img元素对象点属性
documentgetElementsByTagName("img")[0]width;
documentgetElementsByTagName("img")[0]height;
3如果img元素本身没有width和height属性。你可以获取img元素的style样式
function getStyle(obj,attr){
return objcurrentStyleobjcurrentStyle[attr]:getComputedStyle(obj)[attr];
};
obj是你的img标签对象,attr是你的想要获取的属性;
currentStyle支持IE低版本浏览器,
getComputedStyle支持主流浏览器
以上就是关于js 检查图片尺寸全部的内容,包括:js 检查图片尺寸、js获取背景图片宽高比后根据浏览器宽度动态赋值div.style.height、js如何获取没写width和height的img标签中图像的尺寸等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)