我目前有这个代码:
$('.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 属性宽度?
谢谢!