main
Last change
on this file was d565449, checked in by stefan toskovski <stefantoska84@…>, 4 weeks ago |
Update repo after prototype presentation
|
-
Property mode
set to
100644
|
File size:
477 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 fadeIn': {
|
---|
10 | from: {
|
---|
11 | opacity: 0,
|
---|
12 | },
|
---|
13 | to: {
|
---|
14 | opacity: 1,
|
---|
15 | }
|
---|
16 | },
|
---|
17 |
|
---|
18 | '.fadeIn': {
|
---|
19 | animation: 'fadeIn .4s linear',
|
---|
20 | }
|
---|
21 | });
|
---|
22 | };
|
---|
Note:
See
TracBrowser
for help on using the repository browser.