I have an app in angularjs which uses $interval() in background and requests datas form the database via PHP every seconds.
I then use track by $index which really helps on performance.
<tr ng-repeat="user in users track by $index">
<td>{{user.name}}</td>
</tr>
But I want to change the text color for 1 second when the data for that <td> changes.
May be you can try
keeping in mind that data will get reloaded every second.
Or you can track which data is being changed from controller with condition and set a variable true or false based on that like
then in view you can do