aboutsummaryrefslogtreecommitdiff
path: root/js/panels/Timeline/TimelineTrack.reel/TimelineTrack.html
blob: cabd92c0a77a5a74cec5db368c9c81a3a281c0cb (plain)
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
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
<!DOCTYPE html>
<html lang="en">
	<head>
    	<meta http-equiv="content-type" content="text/html; charset=utf-8" />
    	<link rel="stylesheet" type="text/css" href="css/TimelineTrack.css">
        <script type="text/montage-serialization">
               {
                   "owner": {
                       "module": "js/panels/Timeline/TimelineTrack.reel",
                       "name": "Track",
                       "properties": {
                           "element": {"#": "track"},
                           "tweenRepetition" : {"@" : "tweenRepetition"},
                           "styleTracksRepetition" : {"@" : "styleTracksRepetition"},
                           "tween": {"@" : "tween"}
                       }
                   },

                   "tween" : {
                   		"module" : "js/panels/timeline/Tween.reel",
                   		"name" : "Tween",
                   		"properties" : {
                   			"element":{"#": "track_lane"}
                   		},
						"bindings" : {
                           "spanWidth" : {
                               "boundObject" : {"@": "tweenRepetition"},
                               "boundObjectPropertyPath" : "objectAtCurrentIteration.spanWidth",
                               "oneway" : false
                           },
                           "keyFramePosition" : {
                               "boundObject" : {"@": "tweenRepetition"},
                               "boundObjectPropertyPath" : "objectAtCurrentIteration.keyFramePosition",
                               "oneway" : false
                           },
                           "spanPosition" : {
                               "boundObject" : {"@": "tweenRepetition"},
                               "boundObjectPropertyPath" : "objectAtCurrentIteration.spanPosition",
                               "oneway" : false
                           },
                           "keyFrameMillisec" : {
                               "boundObject" : {"@": "tweenRepetition"},
                               "boundObjectPropertyPath" : "objectAtCurrentIteration.keyFrameMillisec",
                               "oneway" : false
                           },
                           "tweenID" : {
                               "boundObject" : {"@": "tweenRepetition"},
                               "boundObjectPropertyPath" : "objectAtCurrentIteration.tweenID",
                               "oneway" : false
                           },
                           "tweenedProperties" : {
                               "boundObject" : {"@": "tweenRepetition"},
                               "boundObjectPropertyPath" : "objectAtCurrentIteration.tweenedProperties",
                               "oneway" : false
                           },
                           "isTweenAnimated" : {
                               "boundObject" : {"@": "tweenRepetition"},
                               "boundObjectPropertyPath" : "objectAtCurrentIteration.isTweenAnimated",
                               "oneway" : false
                           }
                       }
                   },

                   "tweenRepetition": {
                       "module": "montage/ui/repetition.reel",
                   	   "name": "Repetition",
                   	   "properties": {
                   	       "element": {"#": "track_lanes"},
                   	       "isSelectionEnabled" : false
                   	   },
                   	   "bindings": {
                   	       "objects": {
                   	           "boundObject": {"@": "owner"},
                   	           "boundObjectPropertyPath": "tweens",
                   	           "oneway": false
                   	       }
                   	   }
                   },

                   "styleTrackRepetition": {
                       "module": "montage/ui/repetition.reel",
                   	   "name": "Repetition",
                   	   "properties": {
                   	       "element": {"#": "content-styles"},
                   	       "isSelectionEnabled" : false
                   	   },
                   	   "bindings": {
                   	       "objects": {
                   	           "boundObject": {"@": "owner"},
                   	           "boundObjectPropertyPath": "arrStyleTracks",
                   	           "oneway": false
                   	       }
                   	   }
                   },
                   "positionTracksRepetition": {
                       "module": "montage/ui/repetition.reel",
                   	   "name": "Repetition",
                   	   "properties": {
                   	       "element": {"#": "content-position-tracks"},
                   	       "isSelectionEnabled" : false
                   	   },
                   	   "bindings": {
                   	       "objects": {
                   	           "boundObject": {"@": "owner"},
                   	           "boundObjectPropertyPath": "arrPositionTracks",
                   	           "oneway": false
                   	       }
                   	   }
                   },
					"positionPropertyTrack" : {
						"module" : "js/panels/Timeline/PropertyTrack.reel",
						"name" : "PropertyTrack",
						"properties" : {
							"element":{"#": "position-track-base"}
						}
					},
                   "transformTracksRepetition": {
                       "module": "montage/ui/repetition.reel",
                   	   "name": "Repetition",
                   	   "properties": {
                   	       "element": {"#": "content-transform-tracks"},
                   	       "isSelectionEnabled" : false
                   	   },
                   	   "bindings": {
                   	       "objects": {
                   	           "boundObject": {"@": "owner"},
                   	           "boundObjectPropertyPath": "arrTransformTracks",
                   	           "oneway": false
                   	       }
                   	   }
                   },
					"transformPropertyTrack" : {
						"module" : "js/panels/Timeline/PropertyTrack.reel",
						"name" : "PropertyTrack",
						"properties" : {
							"element":{"#": "transform-track-base"}
						}
					}
                   
                   
               }
           </script>
	</head>
	<body>

    	<div id="track" class="timeline-track">
            <div id="track_lanes" class="tracklane">
                <div id="track_lane"></div>
            </div>
            <div class="label-main collapsible-label collapsible-collapsed"></div>
            <div class="collapsible-content collapsible-collapsed content-main">
            	<div class="label-position collapsible-label collapsible-collapsed">
            		
            	</div>
            	<div class="content-position collapsible-content collapsible-collapsed" id="content-position-tracks">
            		<div id="position-track-base"></div>
            	</div>
            	<div class="label-transform collapsible-label collapsible-collapsed">
            		
            	</div>
            	<div class="content-transform collapsible-content collapsible-collapsed" id="content-transform-tracks">
            		<div id="transform-track-base"></div>
            	</div>
            	<div class="label-styles collapsible-label collapsible-collapsed">
            		
            	</div>
            	<div id="content-styles" class="content-styles collapsible-content collapsible-collapsed">
            		<div class="timeline-track"></div>
            	</div>
            </div>
    	</div>

    </body>
</html>