1

我目前有这个代码:

$('.blogimages img').css('marginLeft', function() { 
    return - $(this).width()/2;
});

但是,它采用的是width="750"属性,而不是使用我的样式表新计算的属性。

图像设置示例:

<div class="img-wrap" style="position: relative; ">
    <img class="insert-all wide" title="23" src="http://www.threefishfiesta.com/wp-content/uploads/2012/08/231.jpeg" alt="" width="750" height="500">
</div>

CSS:

.client-small .img-wrap {
    width: 200px;
    height: 200px;
    overflow: hidden;
    text-align: center;
}

.img-wrap .wide{
    height: 100%;
    width: auto;
}

.img-wrap .tall{
    width: 100%;
    height: auto;
}

有没有办法重写它以采用 css 生成的宽度而不是 html 属性宽度?

谢谢!

4

2 回答 2

0

您可以使用 outerWidth() - http://api.jquery.com/outerWidth/

于 2012-08-31T00:40:10.577 回答
0

您是否尝试过获取 css 值?$(this).css('width')/2;

于 2012-08-31T00:40:55.990 回答