-
Notifications
You must be signed in to change notification settings - Fork 0
/
page.jade
38 lines (33 loc) · 840 Bytes
/
page.jade
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 5
html(ng-app='test_angular_animation')
head
link(rel="stylesheet", href="page.css")
script(src="http://localhost:35729/livereload.js")
script(src="http://code.angularjs.org/snapshot/angular.js")
script(src="http://code.angularjs.org/snapshot/angular-animate.js")
script(src="page.js")
body(ng-controller='mycontroller')
h1 Test Angular.js Animation
h2 using Angular 1.2
h3 by Nick Perkins
h4 2013-09-28
h5 The code is on
a(href="https://github.com/nickperkinslondon/test-angular-animation") Github
hr
table
tr
td
span Target List Size:
td
input(ng-model="target_list_size")
tr
td
span Changes Per Second:
td
input(ng-model="cycles_per_second")
hr
span list size: {{ things.length }}
div.thing(
ng-repeat="thing in things"
)
{{ thing }}