Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2)

Side by Side Diff: third_party/polymer/components/neon-animation/animations/slide-from-top-animation.html

Issue 2113853002: Run bower update (Closed) Base URL: https://github.com/catapult-project/catapult@polymer10-migration
Patch Set: Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 <!-- 1 <!--
2 @license 2 @license
3 Copyright (c) 2015 The Polymer Project Authors. All rights reserved. 3 Copyright (c) 2015 The Polymer Project Authors. All rights reserved.
4 This code may only be used under the BSD style license found at http://polymer.g ithub.io/LICENSE.txt 4 This code may only be used under the BSD style license found at http://polymer.g ithub.io/LICENSE.txt
5 The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt 5 The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt
6 The complete set of contributors may be found at http://polymer.github.io/CONTRI BUTORS.txt 6 The complete set of contributors may be found at http://polymer.github.io/CONTRI BUTORS.txt
7 Code distributed by Google as part of the polymer project is also 7 Code distributed by Google as part of the polymer project is also
8 subject to an additional IP rights grant found at http://polymer.github.io/PATEN TS.txt 8 subject to an additional IP rights grant found at http://polymer.github.io/PATEN TS.txt
9 --> 9 -->
10 10
(...skipping 22 matching lines...) Expand all
33 33
34 is: 'slide-from-top-animation', 34 is: 'slide-from-top-animation',
35 35
36 behaviors: [ 36 behaviors: [
37 Polymer.NeonAnimationBehavior 37 Polymer.NeonAnimationBehavior
38 ], 38 ],
39 39
40 configure: function(config) { 40 configure: function(config) {
41 var node = config.node; 41 var node = config.node;
42 42
43 this._effect = new KeyframeEffect(node, [
44 {'transform': 'translateY(-100%)'},
45 {'transform': 'translateY(0%)'}
46 ], this.timingFromConfig(config));
47
43 if (config.transformOrigin) { 48 if (config.transformOrigin) {
44 this.setPrefixedProperty(node, 'transformOrigin', config.transformOrigin ); 49 this.setPrefixedProperty(node, 'transformOrigin', config.transformOrigin );
45 } else { 50 } else {
46 this.setPrefixedProperty(node, 'transformOrigin', '50% 0'); 51 this.setPrefixedProperty(node, 'transformOrigin', '50% 0');
47 } 52 }
48 53
49 this._effect = new KeyframeEffect(node, [
50 {'transform': 'translateY(-100%)'},
51 {'transform': 'translateY(0%)'}
52 ], this.timingFromConfig(config));
53
54 return this._effect; 54 return this._effect;
55 } 55 }
56 56
57 }); 57 });
58 58
59 </script> 59 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698