node.jsを使用してデータベースからデータを取得するために、以下のような単純なコードを使用しています。
私が達成したいのは、新しいデータまたは既存のデータが変更され、Web ページにプッシュされたときに、その特定のものだけの色をアニメーション化または変更する必要があることです。どうすればいいですか?
どんな助けでも大歓迎です。
コード:
// creating a new websocket
var socket = io.connect('http://localhost:8000');
// on message recived we print the new data inside the #container div
socket.on('notification', function (data) {
var usersList = "<div id='aaa'>";
$.each(data.users,function(index,user){
usersList += "<p>" + user.users + "</p>";
});
usersList += "</div>";
$('#container').html(usersList);
});