当background-size设置为包含时,如何获取背景图像的尺寸?

时间:2013-08-10 09:21:50

标签: jquery html css

HTML:

<div class="logo-container">
    <span>some text</span>
</div>

CSS:

.logo-container {
    display: block;
    background: url(img/logo.png) no-repeat center;
    background-size: contain;
    width:100%;
    height:20%;
}

如何获得背景图像缩放到的当前尺寸?

我假设背景图片尺寸与.logo-container的尺寸不同。

2 个答案:

答案 0 :(得分:6)

小提琴:http://jsfiddle.net/umXk3/

由于您已经知道图片是未缩放格式的780x150,因此您可以从.logo-container的维度中推断出其当前尺寸:

var width = $('.logo-container').width();
var height = $('.logo-container').height();

// Calculate dimensions depending on if width is greater than height:
var imgWidth = width > height ? 780/150 * height : width;
var imgHeight = height > width ? 150/780 * width : height;

答案 1 :(得分:0)

尝试

var wdth = $('.logo-container img').width();
var hght = $('.logo-container img').height();

或者你也可以得到div的高度和宽度,如

var wdth = $('.logo-container').width();

因为图像是该div的背景图像。