jQuery动画border-bottom-width

时间:2012-03-19 16:39:24

标签: jquery html css jquery-animate border

我想将边框底宽从10px设置为0px,我该怎么做?

$(".shortener:last").animate({
        'borderBottomWidth' : '0px'});

这不起作用,谢谢!。

更新:我使用了margin-bottom:-10px

1 个答案:

答案 0 :(得分:4)

似乎在 jsFiddle example

中正常工作

jQuery的:

  $("#block").animate({
    borderBottomWidth: "0px"
  }, 1500 );

CSS:

div {
width:100px;
border:10px solid green;
}​

HTML:

<button id="go">&raquo; Run</button>
<div id="block">Hello!</div>​

请注意,设置动画的属性值不需要您在示例中使用的引号。