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
- <div ng-controller="Ctrl">
- <select ng-model="selection" ng-options="item for item in items">
- </select>
- <tt>selection={{selection}}</tt>
- <hr/>
- <div class="animate-switch-container"
- ng-switch on="selection">
- <div class="animate-switch" ng-switch-when="settings">Settings Div</div>
- <div class="animate-switch" ng-switch-when="home">Home Span</div>
- <div class="animate-switch" ng-switch-default>default</div>
- </div>
- </div>