我必须以120px到120px的div显示用户的照片图像。 问题是图像可能有不同的大小:
有没有办法在正方形中插入图像而不会失去宽高比?
注意:图像显示为背景图像。我更喜欢CSS,但它可能是javascript或jquery。
非常重要:需要支持IE8 。
答案 0 :(得分:-2)
尝试使用jQuery。您可以在保留纵横比的同时定义图片所需的高度和宽度。
检查此示例。
$(document).ready(function() {
$('.story-small img').each(function() {
var maxWidth = 100; // Max width for the image
var maxHeight = 100; // Max height for the image
var ratio = 0; // Used for aspect ratio
var width = $(this).width(); // Current image width
var height = $(this).height(); // Current image height
// Check if the current width is larger than the max
if(width > maxWidth){
ratio = maxWidth / width; // get ratio for scaling image
$(this).css("width", maxWidth); // Set new width
$(this).css("height", height * ratio); // Scale height based on ratio
height = height * ratio; // Reset height to match scaled image
width = width * ratio; // Reset width to match scaled image
}
// Check if current height is larger than max
if(height > maxHeight){
ratio = maxHeight / height; // get ratio for scaling image
$(this).css("height", maxHeight); // Set new height
$(this).css("width", width * ratio); // Scale width based on ratio
width = width * ratio; // Reset width to match scaled image
}
});
答案 1 :(得分:-3)
是。您可以使用CSS规则维护背景图像的宽高比:
socat -t100 -x -v UNIX-LISTEN:/tmp/.sock,mode=777,reuseaddr,fork ,UNIX-CONNECT:/tmp/.sock_original |
awk '{ if (lines > 0) { print; --lines; }} /^>/ { lines = 1}' | while read -r line; do echo $line > /dev/udp/localhost/6543; done
更多信息:https://developer.mozilla.org/en-US/docs/Web/CSS/background-size