-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtigers_final_legend_edge.js
66 lines (59 loc) · 1.3 KB
/
tigers_final_legend_edge.js
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
/**
* Adobe Edge: symbol definitions
*/
(function($, Edge, compId){
//images folder
var im='images/';
var fonts = {};
var resources = [
];
var symbols = {
"stage": {
version: "2.0.0",
minimumCompatibleVersion: "2.0.0",
build: "2.0.0.250",
baseState: "Base State",
initialState: "Base State",
gpuAccelerate: false,
resizeInstances: false,
content: {
dom: [
{
id:'tiger_legend',
type:'image',
rect:['78%','455px','19%','125px','auto','auto'],
fill:["rgba(0,0,0,0)",'tiger_legend.png','0px','0px','100%','100%']
}],
symbolInstances: [
]
},
states: {
"Base State": {
"${_tiger_legend}": [
["style", "top", '455px'],
["style", "height", '125px'],
["style", "left", '78%'],
["style", "width", '19%']
]
}
},
timelines: {
"Default Timeline": {
fromState: "Base State",
toState: "",
duration: 0,
autoPlay: true,
timeline: [
]
}
}
}
};
Edge.registerCompositionDefn(compId, symbols, fonts, resources);
/**
* Adobe Edge DOM Ready Event Handler
*/
$(window).ready(function() {
Edge.launchComposition(compId);
});
})(jQuery, AdobeEdge, "EDGE-88968000");