Add ICU message format support
[chromium-blink-merge.git] / third_party / polymer / v1_0 / components-chromium / neon-animation / animations / scale-up-animation-extracted.js
blobc94708c1faeaf217d9e7fb73c5f2757519fc1c20
3   Polymer({
5     is: 'scale-up-animation',
7     behaviors: [
8       Polymer.NeonAnimationBehavior
9     ],
11     configure: function(config) {
12       var node = config.node;
14       if (config.transformOrigin) {
15         this.setPrefixedProperty(node, 'transformOrigin', config.transformOrigin);
16       }
18       var scaleProperty = 'scale(0)';
19       if (config.axis === 'x') {
20         scaleProperty = 'scale(0, 1)';
21       } else if (config.axis === 'y') {
22         scaleProperty = 'scale(1, 0)';
23       }
25       this._effect = new KeyframeEffect(node, [
26         {'transform': scaleProperty},
27         {'transform': 'scale(1, 1)'}
28       ], this.timingFromConfig(config));
30       return this._effect;
31     }
33   });