javascript - React CSSTransition not working? - Stack Overflow

I'm trying to have a login ponent fade in when the page is loaded and then fade out when the new p

I'm trying to have a login ponent fade in when the page is loaded and then fade out when the new ponent is rendered. No fading happens at all, it just appears. I read in other posts you need a key, but I have no idea what the key value would be in this instance?

return (
        <div className="box2">
                            <CSSTransition
                                transitionName="example"
                                transitionAppear={true}
                                transitionAppearTimeout={500}
                                transitionEnter={false}
                                transitionLeave={false}>
                        <Login/>
                            </CSSTransition>
                            <Button bsStyle="primary" 
    onClick={this.changeView}>SUBMIT</Button>
                        </div>
);

CSS:

example-enter {
    opacity: 0.01;
}

.example-enter.example-enter-active {
    opacity: 1;
    transition: opacity 500ms ease-in;
}

.example-leave {
    opacity: 1;
}

.example-leave.example-leave-active {
    opacity: 0.01;
    transition: opacity 300ms ease-in;
}


.example-appear {
    opacity: 0.01;
}

.example-appear.example-appear-active {
    opacity: 1;
    transition: opacity .5s ease-in;
}

I'm trying to have a login ponent fade in when the page is loaded and then fade out when the new ponent is rendered. No fading happens at all, it just appears. I read in other posts you need a key, but I have no idea what the key value would be in this instance?

return (
        <div className="box2">
                            <CSSTransition
                                transitionName="example"
                                transitionAppear={true}
                                transitionAppearTimeout={500}
                                transitionEnter={false}
                                transitionLeave={false}>
                        <Login/>
                            </CSSTransition>
                            <Button bsStyle="primary" 
    onClick={this.changeView}>SUBMIT</Button>
                        </div>
);

CSS:

example-enter {
    opacity: 0.01;
}

.example-enter.example-enter-active {
    opacity: 1;
    transition: opacity 500ms ease-in;
}

.example-leave {
    opacity: 1;
}

.example-leave.example-leave-active {
    opacity: 0.01;
    transition: opacity 300ms ease-in;
}


.example-appear {
    opacity: 0.01;
}

.example-appear.example-appear-active {
    opacity: 1;
    transition: opacity .5s ease-in;
}
Share asked Oct 11, 2017 at 14:24 rnmalonernmalone 1,0601 gold badge14 silver badges28 bronze badges 1
  • What version are you using? Latest is using a slightly different syntax. – Theo.T Commented Oct 11, 2017 at 15:04
Add a ment  | 

1 Answer 1

Reset to default 11

You're using the version 2 CSSTransition ponent but are passing it version 1's prop names. If you look in your console you'll probably see warnings that React doesn't recognize 'transitionName', 'transitionAppear', etc.

Here's a way to acplish what you're looking for using version 2's CSSTransition ponent.

<CSSTransition
  classNames="example"
  timeout={500}
  in={this.state.mounted}
>
  <Login/>
</CSSTransition>

By default the CSSTransition ponent doesn't run enter animations on page load, so you need to set the in prop to some arbitrary value that starts out as false but is set to true on ponentDidMount. Here's a CodeSandbox so you can see the full implementation: https://codesandbox.io/s/v8w3jxo94l

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743684983a4489999.html

相关推荐

  • javascript - React CSSTransition not working? - Stack Overflow

    I'm trying to have a login ponent fade in when the page is loaded and then fade out when the new p

    19小时前
    30

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信