background image animation
hi all,
how can I animate background-image? I mean slow loading image ...
something like this ...
- $(this).animate({ "background-image","url('image.png')" }, 500);
but this doesnt work for me ... I also tried this ... but it just show after 1s ... with no animation
- setTimeout(function(){
- $("#tblmenu").css("background-image","url('image.png')");
- },1000)