Correct the CSS example for 'appear' transition

Move transition from `.example-appear` to `.example-appear.example-appear-active`
This commit is contained in:
Matt
2015-09-27 17:33:16 +01:00
parent e5ef8c4708
commit 0fedf90eb4

View File

@@ -101,11 +101,11 @@ During the initial mount `ReactCSSTransitionGroup` will get the `example-appear`
```css
.example-appear {
opacity: 0.01;
transition: opacity .5s ease-in;
}
.example-appear.example-appear-active {
opacity: 1;
transition: opacity .5s ease-in;
}
```