forked from bennadel/JavaScript-Demos
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.htm
157 lines (114 loc) · 3.55 KB
/
index.htm
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
<!doctype html>
<html ng-app="Demo">
<head>
<meta charset="utf-8" />
<title>
Animating A Single Item Using ngRepeat And ngAnimate In AngularJS
</title>
<link rel="stylesheet" type="text/css" href="./demo.css"></link>
</head>
<body ng-controller="AppController">
<h1>
Animating A Single Item Using ngRepeat And ngAnimate In AngularJS
</h1>
<div class="container {{ orientation }}">
<!--
Here, we are using a "hack" to attach ngAnimate to a "single item" cycle.
There is no "collection" in this demo - we only have "selectedFriend"; so,
in order to animate changes to the single item, we stuff it into an inline
array. This way, every time the selectedFriend changes, the single item in
the array will be replaced. This will cause ngRepeat to trigger a "leave"
and an "enter" animation event.
NOTE: "selectedFriend" doesn't overwrite itself! In the context of the "[]"
notation, it's in the main scope; however, when it's define as the item in
the repeater, it's in a CHILD SCOPE of the repeater. Same object, just stored
in two different scopes.
-->
<div
ng-repeat="selectedFriend in [ selectedFriend ]"
class="friend">
<div class="name">
{{ selectedFriend.name }}
</div>
<div class="meta">
ID: {{ selectedFriend.id }}
|
{{ selectedFriend.nickname }}
</div>
</div>
</div>
<p class="controls">
«
<a ng-click="showPrevious()">Previous Friend</a>
—
<a ng-click="showNext()">Next Friend</a>
»
</p>
<!-- Load scripts. -->
<script type="text/javascript" src="../../vendor/angularjs/angular-1.3.8.min.js"></script>
<script type="text/javascript" src="../../vendor/angularjs/angular-animate-1.3.8.min.js"></script>
<script type="text/javascript">
// Create an application module for our demo.
var app = angular.module( "Demo", [ "ngAnimate" ] );
// -------------------------------------------------- //
// -------------------------------------------------- //
// I control the root of the application.
app.controller(
"AppController",
function( $scope ) {
// I contain the list of friends to iterate in our cycle UI.
var friends = [
{
id: 1,
name: "Sarah",
nickname: "Stubbs"
},
{
id: 2,
name: "Heather",
nickname: "Squeaks"
},
{
id: 3,
name: "Kim",
nickname: "Stud Muffin"
},
{
id: 4,
name: "Joanna",
nickname: "Jo-Jo"
}
];
// I hold the index of the selected friend in the array.
var selectedIndex = 0;
// I relay the orientation of the cycle as the user moves from one
// friend to the next (whether its a "previous" orientation or a
// "next" orientation). This is used to make the animation feel more
// natural.
$scope.orientation = "next";
// I am the selected friend, currently being displayed.
$scope.selectedFriend = friends[ selectedIndex ];
// ---
// PUBLIC METHODS.
// ---
// I move to the previous friend in the collection.
$scope.showPrevious = function() {
$scope.orientation = "previous";
if ( --selectedIndex < 0 ) {
selectedIndex = ( friends.length - 1 );
}
$scope.selectedFriend = friends[ selectedIndex ];
}
// I move the next friend in the collection.
$scope.showNext = function() {
$scope.orientation = "next";
if ( ++selectedIndex >= friends.length ) {
selectedIndex = 0;
}
$scope.selectedFriend = friends[ selectedIndex ];
}
}
);
</script>
</body>
</html>