blob: 9a874ffce4bebca8f5c49d85b9a97e1311f13004 [file]
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Example - example-example47-debug</title>
<link href="animations.css" rel="stylesheet" type="text/css">
<script src="../../../angular.js"></script>
<script src="../../../angular-animate.js"></script>
<script src="script.js"></script>
</head>
<body ng-app="ngAnimate">
<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>
</body>
</html>