main
Last change
on this file since d565449 was d565449, checked in by stefan toskovski <stefantoska84@…>, 4 weeks ago |
Update repo after prototype presentation
|
-
Property mode
set to
100644
|
File size:
527 bytes
|
Line | |
---|
1 | 'use strict';
|
---|
2 |
|
---|
3 | exports.addon = function (renderer) {
|
---|
4 | if (process.env.NODE_ENV !== 'production') {
|
---|
5 | require('../__dev__/warnOnMissingDependencies')('animate', renderer, ['keyframes']);
|
---|
6 | }
|
---|
7 |
|
---|
8 | renderer.put('', {
|
---|
9 | '@keyframes fadeOut': {
|
---|
10 | from: {
|
---|
11 | opacity: 1,
|
---|
12 | },
|
---|
13 | to: {
|
---|
14 | opacity: 0,
|
---|
15 | }
|
---|
16 | },
|
---|
17 |
|
---|
18 | '.fadeOut': {
|
---|
19 | animation: 'fadeOut .3s linear',
|
---|
20 | 'animation-fill-mode': 'forwards',
|
---|
21 | }
|
---|
22 | });
|
---|
23 | };
|
---|
Note:
See
TracBrowser
for help on using the repository browser.