企业🤖AI Agent构建引擎,智能编排和调试,一键部署,支持私有化部署方案 广告
github:[https://github.com/reactjs/react-transition-group](https://github.com/reactjs/react-transition-group) 直接看官网示例: ~~~jsx function App() { const [inProp, setInProp] = useState(false); return ( <div> <CSSTransition in={inProp} timeout={200} classNames="my-node"> <div> {"I'll receive my-node-* classes"} </div> </CSSTransition> <button type="button" onClick={() => setInProp(true)}> Click to Enter </button> </div> ); } ~~~ ~~~css .my-node-enter { opacity: 0; } .my-node-enter-active { opacity: 1; transition: opacity 200ms; } .my-node-exit { opacity: 1; } .my-node-exit-active { opacity: 0; transition: opacity 200ms; } ~~~ `CSSTransition`applies a pair of class names during the`appear`,`enter`, and`exit`states of the transition. The first class is applied and then a second`*-active`class in order to activate the CSS transition. After the transition, matching`*-done`class names are applied to persist the transition state. 三个阶段:appear,enter,exit 会分别添加对应的类名到对应的 DOM 元素上(以触发过渡效果) When the`in`prop is set to`true`, the child component will first receive the class`example-enter`, then the`example-enter-active`will be added in the next tick.`CSSTransition`[forces a reflow](https://github.com/reactjs/react-transition-group/blob/5007303e729a74be66a21c3e2205e4916821524b/src/CSSTransition.js#L208-L215)between before adding the`example-enter-active`. This is an important trick because it allows us to transition between`example-enter`and`example-enter-active`even though they were added immediately one after another. Most notably, this is what makes it possible for us to animate*appearance*. 简单理解:`in`这个属性为 true 时 / 变化时,子组件会触发动画效果(相当于 vue 的 v-if ? )