I have there is a table showing the last 10 news. But when I want to put any new command to the news appears in the td blinks or flash bgcolor
A:
If you're using jQuery, you can achieve this effect with animate
like this:
$(".my-new-tr td").css("background:#ffff00") // make the background yellow
.animate({ "background": "#ffffff" }) // fade to white
.parent().removeClass("my-new-tr");
This assumes your newly added row will be given the class my-new-tr
when created. This class will be removed after the effect.
Makram Saleh
2010-07-19 06:37:55
You can see an example?
alkitbi
2010-07-19 07:00:27