http://docs.angularjs.org/api/ng/directive/ngSwitch

http://docs.angularjs.org/api/ng/directive/ngSwitch

http://plnkr.co/edit/ngdoc:example-example46@snapshot?p=preview

 

Example of use

  1. <div ng-controller="Ctrl">
  2. <select ng-model="selection" ng-options="item for item in items">
  3. </select>
  4. <tt>selection={{selection}}</tt>
  5. <hr/>
  6. <div class="animate-switch-container"
  7. ng-switch on="selection">
  8. <div class="animate-switch" ng-switch-when="settings">Settings Div</div>
  9. <div class="animate-switch" ng-switch-when="home">Home Span</div>
  10. <div class="animate-switch" ng-switch-default>default</div>
  11. </div>
  12. </div>