repo.or.cz
/
chromium-blink-merge.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
history
|
raw
|
HEAD
Merge Chromium + Blink git repositories
[chromium-blink-merge.git]
/
third_party
/
polymer
/
v1_0
/
components-chromium
/
neon-animation
/
animations
/
fade-in-animation-extracted.js
blob
28666b1301fd1a0ac50fe8b51b0d4e8980cb62f5
1
2
3
Polymer({
4
5
is: 'fade-in-animation',
6
7
behaviors: [
8
Polymer.NeonAnimationBehavior
9
],
10
11
configure: function(config) {
12
var node = config.node;
13
this._effect = new KeyframeEffect(node, [
14
{'opacity': '0'},
15
{'opacity': '1'}
16
], this.timingFromConfig(config));
17
return this._effect;
18
}
19
20
});
21