如何将reactcstransitiongroup与animation .css集成



我只是在尝试将animation .css与react transition组集成。是的,我知道已经有一个问题了。但这已经行不通了。我需要一个实际例子。这是我的尝试

<ReactCSSTransitionGroup transitionName={{enter: "animated", enterActive: "bounce", leave: "animated",leaveActive: "tada"}}>
    {this.props.children}
</ReactCSSTransitionGroup>

example: animation .css with react transition group Jsfidle

class App extends React.Component {
    constructor(props){
        super(props);
        this.state={items: ['hello', 'world', 'click', 'me']};
    }
    handleAdd() {
        let {items} = this.state
        this.setState({items: [...items, 'new-element'+(items.length+1)]});
    }
    handleRemove(i) {
        var newItems = this.state.items.slice();
        newItems.splice(i, 1);
        this.setState({items: newItems});
    }
    render() {
        var items = this.state.items.map((item, i)=>
        <div key={item} className="block" onClick={this.handleRemove.bind(this, i)}>
        {item}
        </div>
    );
    return (
        <div>
        <button onClick={this.handleAdd.bind(this)}>Add Item</button>
        <CSSTransitionGroup
        transitionName={{
            enter: "animated",
            enterActive: "rubberBand",
            leave: "animated",
            leaveActive: "fadeOutRight"
        }}>
        {items}
        </CSSTransitionGroup>
        </div>
    );
}

}

最新更新