作者:快乐的老爷们土豆_534 | 来源:互联网 | 2023-10-13 02:59
篇首语:本文由编程笔记#小编为大家整理,主要介绍了使用Javascript解决网页图片拉伸问题相关的知识,希望对你有一定的参考价值。
转载请注明出处:http://blog.csdn.net/xiaojimanman/article/details/53084716
http://www.llwjy.com/blogdetail/92b85d1cdb0343a7bd6d8dd0868c0f82.html
个人博客站已经上线了,网址 www.llwjy.com ~欢迎各位吐槽~
-------------------------------------------------------------------------------------------------
在开始之前先打一个小小的广告,自己创建一个QQ群:321903218,点击链接加入群【Lucene案例开发】,主要用于交流如何使用Lucene来创建站内搜索后台,同时还会不定期的在群内开相关的公开课,感兴趣的童鞋可以加入交流。
问题描述
这段时间在做PM的需求的时候突然发现一个问题,产品上的图片来自多个第三方,具体的尺寸无法确定,如果直接在样式中写死图片的尺寸大小就会出现图片拉伸的现象,十分影响产品的美观,因此希望可以找到一个比较好的解决方案。自己先做了一个简单的demo来展示问题。
<html>
上述这种情况还是挺影响美观的&#xff0c;是否可以考虑动态的设置图片的尺寸呢&#xff1f;
解决思路
是否可以在浏览器加载图片资源后&#xff0c;获取图片的真实尺寸和图片容器的大小&#xff0c;然后动态地设置图片的width、height属性。
获取图片的真实尺寸
html5下已经提供了相应的方法来返回图片的真实尺寸大小&#xff08;img.naturalWidth、img.naturalHeight&#xff09;&#xff0c;针对IE6/7/8也可以通过以下方法来获取真实尺寸的大小
var imgae &#61; new Image();
image.src &#61; img.src;
image.onload &#61; function() {
var w &#61; image.width;
var h &#61; image.height;
}
下面就编写对应的JS方法获取图片的真实尺寸已经图片容器的尺寸大小
setImgSize : function(img, callback) {
if (img.naturalWidth) { //html5
callback(img, img.naturalWidth, img.naturalHeight, img.width, img.height);
} else { // IE 6 7 8
var imgae &#61; new Image();
image.src &#61; img.src;
image.onload &#61; function() {
callback(img, image.width, image.height, img.width, img.height);
}
}
}
重新设置图片尺寸
在获取图片真实尺寸已经容器尺寸之后&#xff0c;我们需要重新设置图片的尺寸大小。这里先简单的介绍下处理目标&#xff1a;如果设置后的尺寸超过展示区域&#xff0c;则展示图片的中间部分&#xff0c;如果展示区域大于图片尺寸&#xff0c;则图片居中显示。用图简单说明下&#xff0c;黑色实线为图片的显示区域&#xff0c;绿色部分为图片的大小。
下面我们提供三种方法来处理图片&#xff0c;分别实现上部两种&#xff08;宽度一致&#xff09;、下部两种&#xff08;高度一致&#xff09;、右侧两种&#xff08;铺满显示区域&#xff09;&#xff0c;下面就分别介绍这三种方法&#xff1a;
一、保证宽度一致
//原始宽度 原始高度 容器宽度 容器高度
//保证宽度一致
resetImgSizeW : function(img, nw, nh, w, h) {
nwh &#61; nw / nh;
wh &#61; w / h;
if (nwh > wh) {
img.width &#61; w;
var height &#61; parseInt(1 / nwh * w);
img.height &#61; height;
var top &#61; parseInt((h - height) / 2);
img.style.marginTop &#61; top &#43; "px";
} else if (nwh img.width &#61; w;
var height &#61; parseInt(1 / nwh * w);
img.height &#61; height;
var top &#61; parseInt((height - h) / 2) * -1;
img.style.marginTop &#61; top &#43; "px";
} else {
img.height &#61; h;
img.width &#61; w;
}
},
在这里我们需要判断图片原始尺寸的长宽比例以及容器的长宽比例之间的关系&#xff0c;如果高度富裕&#xff0c;那就相应将图片往上移动一定的像素&#xff0c;如果高度不足&#xff0c;就将图片往下移动相应的像素&#xff0c;至于其他的两种情况也是同样的逻辑&#xff0c;先看下处理后的效果&#xff1a;
二、保证高度一致
//原始宽度 原始高度 容器宽度 容器高度
//保证高度一致
resetImgSizeH : function(img, nw, nh, w, h) {
nwh &#61; nw / nh;
wh &#61; w / h;
if (nwh > wh) {
img.height &#61; h;
var width &#61; parseInt(nwh * h);
img.width &#61; width;
var left &#61; parseInt((width - w) / 2) * -1;
img.style.marginLeft &#61; left &#43; "px";
} else if (nwh img.height &#61; h;
var width &#61; parseInt(nwh * h);
img.width &#61; width;
var left &#61; parseInt((w - width) / 2);
img.style.marginLeft &#61; left &#43; "px";
} else {
img.height &#61; h;
img.width &#61; w;
}
}
三、铺满显示区域
//原始宽度 原始高度 容器宽度 容器高度
//铺满全屏
resetImgSizeWH : function(img, nw, nh, w, h) {
nwh &#61; nw / nh;
wh &#61; w / h;
if (nwh > wh) {
img.height &#61; h;
var width &#61; parseInt(nwh * h);
img.width &#61; width;
var left &#61; parseInt((width - w) / 2) * -1;
img.style.marginLeft &#61; left &#43; "px";
} else if (nwh img.width &#61; w;
var height &#61; parseInt(1 / nwh * w);
img.height &#61; height;
var top &#61; parseInt((height - h) / 2) * -1;
img.style.marginTop &#61; top &#43; "px";
} else {
img.height &#61; h;
img.width &#61; w;
}
},
如何使用JS
上面对实现的逻辑以及最终的效果做了简单的介绍&#xff0c;下面就介绍下如何使用。
ImageLoad源码$(document).ready(function() {
new ImageLoad();
});
ImageLoad &#61; function(){
this.init();
};
ImageLoad.prototype &#61; {
init : function () {
// this.initImg("w");
},
initImg : function(type) {
var _this &#61; this;
var imgs &#61; document.getElementsByTagName(&#39;img&#39;);
for (var i&#61;0; i try {
var img &#61; imgs[i];
if ("w" &#61;&#61; type) {
$(img).onload &#61; _this.setImgSize(img, _this.resetImgSizeW);
} else if ("h" &#61;&#61; type) {
$(img).onload &#61; _this.setImgSize(img, _this.resetImgSizeH);
} else if ("wh" &#61;&#61; type) {
$(img).onload &#61; _this.setImgSize(img, _this.resetImgSizeWH);
}
} catch(e) {
}
}
},
//原始宽度 原始高度 容器宽度 容器高度
//保证高度一致
resetImgSizeH : function(img, nw, nh, w, h) {
nwh &#61; nw / nh;
wh &#61; w / h;
if (nwh > wh) {
img.height &#61; h;
var width &#61; parseInt(nwh * h);
img.width &#61; width;
var left &#61; parseInt((width - w) / 2) * -1;
img.style.marginLeft &#61; left &#43; "px";
} else if (nwh img.height &#61; h;
var width &#61; parseInt(nwh * h);
img.width &#61; width;
var left &#61; parseInt((w - width) / 2);
img.style.marginLeft &#61; left &#43; "px";
} else {
img.height &#61; h;
img.width &#61; w;
}
},
//原始宽度 原始高度 容器宽度 容器高度
//保证宽度一致
resetImgSizeW : function(img, nw, nh, w, h) {
nwh &#61; nw / nh;
wh &#61; w / h;
if (nwh > wh) {
img.width &#61; w;
var height &#61; parseInt(1 / nwh * w);
img.height &#61; height;
var top &#61; parseInt((h - height) / 2);
img.style.marginTop &#61; top &#43; "px";
} else if (nwh img.width &#61; w;
var height &#61; parseInt(1 / nwh * w);
img.height &#61; height;
var top &#61; parseInt((height - h) / 2) * -1;
img.style.marginTop &#61; top &#43; "px";
} else {
img.height &#61; h;
img.width &#61; w;
}
},
//原始宽度 原始高度 容器宽度 容器高度
//铺满全屏
resetImgSizeWH : function(img, nw, nh, w, h) {
nwh &#61; nw / nh;
wh &#61; w / h;
if (nwh > wh) {
img.height &#61; h;
var width &#61; parseInt(nwh * h);
img.width &#61; width;
var left &#61; parseInt((width - w) / 2) * -1;
img.style.marginLeft &#61; left &#43; "px";
} else if (nwh img.width &#61; w;
var height &#61; parseInt(1 / nwh * w);
img.height &#61; height;
var top &#61; parseInt((height - h) / 2) * -1;
img.style.marginTop &#61; top &#43; "px";
} else {
img.height &#61; h;
img.width &#61; w;
}
},
//获取图片真实尺寸以及容器尺寸
setImgSize : function(img, callback) {
if (img.naturalWidth) { //html5
callback(img, img.naturalWidth, img.naturalHeight, img.width, img.height);
} else { // IE 6 7 8
var imgae &#61; new Image();
image.src &#61; img.src;
image.onload &#61; function() {
callback(img, image.width, image.height, img.width, img.height);
}
}
},
}
上面代码还有很多可以优化的地方&#xff0c;欢迎大家在评论区留言交流
-------------------------------------------------------------------------------------------------
小福利
-------------------------------------------------------------------------------------------------
个人在极客学院上《Lucene案例开发》课程已经上线了&#xff0c;欢迎大家吐槽~
第一课&#xff1a;Lucene概述
第二课&#xff1a;Lucene 常用功能介绍
第三课&#xff1a;网络爬虫
第四课&#xff1a;数据库连接池
第五课&#xff1a;小说网站的采集
第六课&#xff1a;小说网站数据库操作
第七课&#xff1a;小说网站分布式爬虫的实现
第八课&#xff1a;Lucene实时搜索
第九课&#xff1a;索引的基础操作