作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有多个图像,我想将它们全部放在一行中。我应该如何控制图像的宽度,使所有图像的宽度总和不超过浏览器的宽度。??
最佳答案
如果你有可变宽度的图像,你可以使用这样的东西:
/**
*@param contId {string} id of the container element
*/
var imgResize = function(contId) {
var imgs = [], totalWidth = 0, ratio = 0, containerWidth = 0;
var cont = document.getElementById(contId);
var child = cont.firstChild;
while(child.nextSibling){
if(child.tagName && child.tagName.toUpperCase() === 'IMG'){
var imgW = child.clientWidth;
imgs.push({node: child, width: imgW});
totalWidth += imgW;
}
child = child.nextSibling;
}
ratio = cont.clientWidth / totalWidth;
imgs.forEach(function(img){
var cWidth = Math.floor(ratio*img.width);
img.node.style.cssText='width:'+cWidth+'px';
});
};
/**
* Fire it on window resizes, ooohh shiny
*/
window.onresize=function(){imgResize('container');};
请记住,您可能应该做类似的事情
img{border:0px;display:block;float:right;}
.imgContainer{font-size:0px;padding:0px;width:100%;/*for example*/}
让它在低于现代浏览器的情况下工作留给读者作为练习。是的,使用框架是个好主意,我会推荐 YUI,它非常好,甚至俄罗斯人都知道使用它。
关于javascript - 如何在javascript中操作多个图像的宽度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3002539/
我是一名优秀的程序员,十分优秀!