Angular: Empty Fiddle

http://angularjs.org/

HTML

<div ng-controller="MyCtrl">
  <table>
    <tr ng-repeat="item in items track by $index" ng-class="'class' + $index%4">
        <td>{{item}}</td>
    </tr>
  </table>
</div>

CSS

.class0 {
    background-color : teal;
}

.class1 {
    background-color : grey;
}

.class2 {
    background-color : red;
}

.class3 {
    background-color : yellow;
}

JavaScript

var myApp = angular.module('myApp',[]);


function MyCtrl($scope) {
    $scope.items = ['hello', 'world', 'again', 'hi', 'hello', 'world', 'again', 'hi'];
}