我有这样的jQuery代码:
$(function() {
$('#butt1').click(function(){
$('#jabe1').css("width", "300px");
});
});
我希望#jabe1 宽度在 10 秒内改变,而不是在点击后 0 秒内改变
:
$('#jabe1').hide(200);
它会慢慢隐藏
我希望#jabe1 宽度像那样隐藏
jabe1 css代码:
#banners li {
float: left;
height: 411px;
width: 268px;
margin: 0px 0px 0px -50px;
position: relative;
background: url("../images/banner-shadow.png") no-repeat scroll center bottom transparent;
padding: 0px;
font-style: normal;
}