-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathMainMenu_edge.js
More file actions
66 lines (62 loc) · 2.2 KB
/
MainMenu_edge.js
File metadata and controls
66 lines (62 loc) · 2.2 KB
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
/*jslint */
/*global AdobeEdge: false, window: false, document: false, console:false, alert: false */
(function (compId) {
"use strict";
var im='images/',
aud='media/',
vid='media/',
js='js/',
fonts = {
},
opts = {
'gAudioPreloadPreference': 'auto',
'gVideoPreloadPreference': 'auto'
},
resources = [
],
scripts = [
],
symbols = {
"stage": {
version: "6.0.0",
minimumCompatibleVersion: "5.0.0",
build: "6.0.0.400",
scaleToFit: "none",
centerStage: "none",
resizeInstances: false,
content: {
dom: [
{
id: 'BG-01',
type: 'image',
rect: ['0px', '0px', '1920px', '1080px', 'auto', 'auto'],
fill: ["rgba(0,0,0,0)",im+"Test/BG/BG-01.jpg",'0px','0px']
},
{
id: 'Ellipse',
type: 'ellipse',
rect: ['666px', '246px', '588px', '588px', 'auto', 'auto'],
borderRadius: ["50%", "50%", "50%", "50%"],
fill: ["rgba(42,42,42,1.00)"],
stroke: [0,"rgba(0,0,0,1)","none"]
}
],
style: {
'${Stage-MainMenu}': {
isStage: true,
rect: [undefined, undefined, '1920px', '1080px'],
fill: ["rgba(0,0,0,1.00)"]
}
}
},
timeline: {
duration: 0,
autoPlay: true,
data: [
]
}
}
};
AdobeEdge.registerCompositionDefn(compId, symbols, fonts, scripts, resources, opts);
if (!window.edge_authoring_mode) AdobeEdge.getComposition(compId).load("MainMenu_edgeActions.js");
})("OTF-MainMenu");