03-06-Alternate.html
			
			
			
				Dosyayı İndir 
			
			
				<!DOCTYPE html>
<html >
<head>
	<meta charset="UTF-8"/>
	<script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.4.8/angular.min.js"></script>
<script>
angular.module('myApp', []).controller('myCtrl', function($scope) {
  $scope.products = [
    {productId:301,productName:'Cep Telefonu',salesPrice:1200},
    {productId:302,productName:'Dizüstü Bilgisayar',salesPrice:3250},
    {productId:303,productName:'Masaüstü Bilgisayar',salesPrice:2100}
  ];
});
</script>
<style>
	.oddsClass{
			background-color:#DDDDDD;
	}
	.evensClass{
			background-color:#AAAAAA;
	}
</style>
</head>
<body>
<div ng-app="myApp" ng-controller="myCtrl">
<br/>
<table border="1" width="100%">
  <tr>
    <th>SIRA SAYISI</th>
    <th>ÜRÜN KİM</th>
    <th>ÜRÜN ADI</th>
    <th>SATIŞ FİYATI</th>
  </tr>
  <tr ng-repeat="product in products " ng-class-odd="'oddsClass'" ng-class-even="'evensClass'">
    <td>{{$index+1}}</td>
    <td>{{product.productId}}</td>
    <td>{{product.productName}}</td>
    <td>{{product.salesPrice}}</td>
  </tr>
 
</table>
</div>
</body>
</html>
				
				Dosyayı İndir