0
如何設置動畫元素一旦出現? (這樣別人用同樣的性能保持冷靜。)我想這樣做:AJAX如何爲出現元素設置動畫
$.each(data, function(i, obj) {
if(obj['Ping'] == "FALSE"){
out = "<li class='red'>"+obj.Vardas+" is down..."+obj.Data+"</li>";
/////animation, once the element gets generated
$(out).prependTo('#database').animate({fontColor:"red", 1000});
out ="";
}else{
out = "<li>"+obj.Vardas+" is up......."+obj.Data+"</li>";
$(out).prependTo('#database');
out ="";
}
});
});
});
</script>
</head>
<body>
<div style="float:right; overflow-y:scroll; height: 400px; width: 50%">
<ul id ='database'></ul>
</div>
jQuery是無法動畫FONTCOLOR和其他顏色屬性。我不明白你想做什麼? –
我想讓li元素在生成時閃爍。 – sauletasmiestas
我編輯了答案。 (爲了使不透明度眨眼效果)。 –