我想要背景颜色和边框的淡化效果。
$('ul#listticker').prepend($('<li>../li>')
.fadeIn(1000)
.animate({
backgroundColor:'#fff8cc',
borderTopColor:"#ff0000",
borderBottomColor:'#ff0000',
borderLeftColor:'#ff0000',
borderRightColor:'#ff0000'
},"slow")
);
我尝试了上面的代码,但它只能使用背景颜色。我还需要使用背景颜色和边框淡出。