-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
38 lines (30 loc) · 1.19 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<!doctype html>
<html lang="en" ng-app='ngfx-demo'>
<head>
<meta charset="utf-8">
<title>ngFx Demo</title>
<meta name="description" content="ngFx demo angular.js animations">
<meta name="author" content="Connor Leech">
<!-- Styles -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css">
<link rel="stylesheet" href="css/main.css">
<!--[if lt IE 9]>
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
</head>
<body>
<div class='row'>
<div ui-view class='fx-bounce-right'></div>
</div>
<!-- Angular -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/angular.js/1.3.15/angular.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/angular-ui-router/0.2.15/angular-ui-router.js"></script>
<!-- ngFx dependencies -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/angular.js/1.3.15/angular-animate.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/1.17.0/TweenMax.min.js"></script>
<script src="libs/ngFx.js"></script>
<!-- application -->
<script src='js/app.js'></script>
<script src='js/controllers/main.js'></script>
</body>
</html>