动画反应组件中的淡出元素

时间:2017-11-14 09:12:41

标签: javascript css reactjs class-names

我在react组件中创建了淡出警告/错误消息(bootstrap样式),并且我在淡出时间方面遇到了一些问题。

到目前为止,我的淡出效果很好,现在就是这样做的:

import React, { Component } from 'react'
import classnames from 'classnames'

class AlertMessage extends Component {
    state = ({ autoHide: false })

    componentDidMount(){
        const { autoHide } = this.props
        if (autoHide && !this.state.hasClosed) {
            setTimeout(() => {
                    this.setState({ autoHide: true, hasClosed: true })
            }, 5000)
        }
    }

    render() {
        const { error, info, success, warning, text } = this.props

        const classNames = {
            'error': error,
            'info': info,
            'success': success,
            'warning': warning,
            'alert-hidden': this.state.autoHide
        }

        return (
            <div className={classnames("alert-message", classNames)}>
                {text}
            </div>
        )
    }
}

export default AlertMessage

现在,我想删除setTimeout和状态,使其成为一个功能无状态组件。我的问题是我的风格中的转换延迟似乎不起作用,我担心它与classNames如何将类应用于组件有关。

这是我的风格:

.alert-message{
    overflow-y: hidden;
    opacity: 1;
    max-height: 80px;
    transition-property: all 450ms;
    transition-duration: 450ms;
    transition-timing-function: cubic-bezier(0, 1, 0.5, 1);
    transition-delay: 5000ms;

由于

1 个答案:

答案 0 :(得分:0)

BluePrint框架的

Toast component使用超时功能处理它。您可以从source code

中提取相同的功能

据我所知,目前只能通过CSS实现动画。