获取图片原始宽高
发布在获取图片原始尺寸的方法2015年12月25日view:1363
在文章任何区域双击击即可给文章添加【评注】!浮到评注点上可以查看详情。

while (prop = props.pop()) { (function (natural, prop) { $.fn[natural] = (natural in new Image()) ? function () { return this[0][natural]; } : function () { var node = this[0], img, value;

if (node.tagName.toLowerCase() === 'img') { img = new Image(); img.src = node.src, value = img[prop]; } return value; }; }('natural' + prop, prop.toLowerCase())); }

评论
发表评论
暂无评论
PUBLISHED IN
获取图片原始尺寸的方法

(function($){ var props = ['Width', 'Height'], prop;

while (prop = props.pop()) {
(function (natural, prop) {
  $.fn[natural] = (natural in new Image()) ? 
  function () {
  return this[0][natural];
  } : 
  function () {
  var 
  node = this[0],
  img,
  value;

  if (node.tagName.toLowerCase() === 'img') {
    img = new Image();
    img.src = node.src,
    value = img[prop];
  }
  return value;
  };
}('natural' + prop, prop.toLowerCase()));
}

}(jQuery));

// 如何使用: var nWidth = $('img#example').naturalWidth(), nHeight = $('img#example').naturalHeight();

友情链接 大搜车前端团队博客
我的收藏