jquery

来源:互联网 发布:容易流前列腺液 知乎 编辑:程序博客网 时间:2024/05/22 10:59
 function thumbImg(_img, _width, _height) {
 var imgWidth = $(_img).width();
 var imgHeight = $(_img).height();
 if (imgWidth > _width || imgHeight > _height) {
  if ((_width /_height) >= (imgWidth / imgHeight)) {
   $(_img).width((_height * imgWidth) / imgHeight);
   $(_img).height(_height);
  }
  else {
   $(_img).width(_width);
   $(_img).height((_width * imgHeight) / imgWidth);
  }
 }
}
原创粉丝点击