jquery - How to fadein prepend li with background color and border color? -


i want fadein effect backgroundcolor , border.

$('ul#listticker').prepend($('<li>../li>')                   .fadein(1000)                   .animate({                         backgroundcolor:'#fff8cc',                         bordertopcolor:"#ff0000",                         borderbottomcolor:'#ff0000',                         borderleftcolor:'#ff0000',                         borderrightcolor:'#ff0000'                         },"slow")                     ); 

i tried above code work background color.and need fadeout backgroundcolor , border.

here are, looks had define border start in css

http://jsfiddle.net/samccone/xryjx/


Comments