-
Notifications
You must be signed in to change notification settings - Fork 0
/
properties.js
87 lines (80 loc) · 1.92 KB
/
properties.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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
import { getColorForString } from './colors.js';
import { Color } from 'lively.graphics';
export const animatedProperties = {
extent: {
type: 'point',
defaultRelative: true,
color: Color.rgbHex('2B7A6D')
},
position: {
type: 'point',
flipCurve: true, // Flip curve in the animation curve in sequence layers
defaultRelative: true,
color: Color.rgbHex('4792B3')
},
fill: {
type: 'color',
color: Color.rgbHex('90CCD1')
},
blur: {
type: 'number',
color: Color.rgbHex('B34794')
},
flipped: {
type: 'number',
color: Color.rgbHex('B38247')
},
tilted: {
type: 'number',
color: Color.rgbHex('B35447')
},
grayscale: {
type: 'number',
color: Color.rgbHex('7647B3')
},
opacity: {
type: 'number',
color: Color.rgbHex('6FB347')
},
rotation: {
type: 'number',
color: Color.rgbHex('A6B347')
},
scale: {
type: 'number',
color: Color.rgbHex('E28743')
},
textString: {
type: 'string',
color: Color.rgbHex('D6C938')
},
fontSize: {
type: 'number',
color: Color.rgbHex('E9AFA3')
},
fontColor: {
type: 'color',
color: Color.rgbHex('F7D183')
},
progress: {
type: 'number',
color: Color.rgbHex('47B391')
}
};
export const notAnimatableOnTextMorph = ['textString', 'fontSize'];
export const notAnimatableOnLabelMorphWithIcon = ['textString'];
// Get a direct mapping property -> type
export function animatedPropertiesAndTypes () {
const propertiesAndTypes = {};
Object.keys(animatedProperties).forEach(key => {
propertiesAndTypes[key] = animatedProperties[key].type;
});
return propertiesAndTypes;
}
export function typeForProperty (property) {
return animatedProperties[property].type;
}
export function getColorForProperty (property) {
if (animatedProperties[property] && animatedProperties[property].color) return animatedProperties[property].color;
return getColorForString(property);
}