<body ng-app="switchExample">
<div ng-controller="ExampleController">
<select ng-model="selection" ng-options="item for item in items">
</select>
<code>select={{select}}</code>
<hr/>
<div class="animate-switch-container"
ng-switch on="selection">
<div class="animate-switch" ng-switch-when="settings">ayarla</div>
<div class="animate-switch" ng-switch-when="home">Anasayfa</div>
<div class="animate-switch" ng-switch-default>özel</div>
</div>
</div>
</body>
This Pen doesn't use any external CSS resources.