這篇文章主要為大家展示了“如何在React中寫一個(gè)Animation組件并為組件進(jìn)入和離開加上動(dòng)畫/過度效果”,內(nèi)容簡(jiǎn)而易懂,條理清晰,希望能夠幫助大家解決疑惑,下面讓小編帶領(lǐng)大家一起研究并學(xué)習(xí)一下“如何在React中寫一個(gè)Animation組件并為組件進(jìn)入和離開加上動(dòng)畫/過度效果”這篇文章吧。
我們提供的服務(wù)有:成都做網(wǎng)站、成都網(wǎng)站建設(shè)、成都外貿(mào)網(wǎng)站建設(shè)、微信公眾號(hào)開發(fā)、網(wǎng)站優(yōu)化、網(wǎng)站認(rèn)證、聞喜ssl等。為上千余家企事業(yè)單位解決了網(wǎng)站和推廣的問題。提供周到的售前咨詢和貼心的售后服務(wù),是有科學(xué)管理、有技術(shù)的聞喜網(wǎng)站制作公司
問題
在單頁面應(yīng)用中,我們經(jīng)常需要給路由的切換或者元素的掛載和卸載加上過渡效果,為這么一個(gè)小功能引入第三方框架,實(shí)在有點(diǎn)小糾結(jié)。不如自己封裝。
思路
原理
以進(jìn)入時(shí) opacity: 0 --> opacity: 1 ,退出時(shí) opacity: 0 --> opacity: 1 為例
元素掛載時(shí)
1.掛載元素dom
2.設(shè)置動(dòng)畫 opacity: 0 --> opacity: 1
元素卸載時(shí)
1.設(shè)置動(dòng)畫 opacity: 0 --> opacity: 1
2.動(dòng)畫結(jié)束后卸載dom
組件設(shè)計(jì)
為了使得組件簡(jiǎn)單易用、低耦合,我們期望如下方式來調(diào)用組件:
屬性名 | 類型 | 描述 |
---|---|---|
isShow | Boolean | 子元素顯示或隱藏控制 |
name | String | 指定一個(gè)name,動(dòng)畫進(jìn)入退出時(shí)的動(dòng)畫 |
在 App.jsx 里調(diào)用組件:
通過改變isShow的值來指定是否顯示
// App.jsx // 其他代碼省略 import './app.css'; <Animation isShow={isShow} name='demo'> <div class='demo'> demo </div> </Animation> // 通過改變isShow的值來指定是否顯示 在 App.css 里指定進(jìn)入離開效果: // 基礎(chǔ)樣式 .demo { width: 200px; height: 200px; background-color: red; } // 定義進(jìn)出入動(dòng)畫 .demo-showing { animation: show 0.5s forwards; } .demo-fading { animation: fade 0.5s forwards; } // 定義動(dòng)畫fade與show @keyframes show { from { opacity: 0; } to { opacity: 1; } } @keyframes fade { from { opacity: 1; } to { opacity: 0; } }
根據(jù)思路寫代碼
// Animation.jsx import { PureComponent } from 'react'; import './index.css'; class Animation extends PureComponent { constructor(props) { super(props); this.state = { isInnerShow: false, animationClass: '', }; } componentWillReceiveProps(props) { const { isShow } = props; if (isShow) { // 顯示 this.show().then(() => { this.doShowAnimation(); }); } else { // 隱藏 this.doFadeAnimation(); } } handleAnimationEnd() { const isFading = this.state.animationClass === this.className('fading'); if (isFading) { this.hide(); } } show() { return new Promise(resolve => { this.setState( { isInnerShow: true, }, () => { resolve(); } ); }); } hide() { this.setState({ isInnerShow: false, }); } doShowAnimation() { this.setState({ animationClass: this.className('showing'), }); } doFadeAnimation() { this.setState({ animationClass: this.className('fading'), }); } /** * 獲取className * @param {string} inner 'showing' | 'fading' */ className(inner) { const { name } = this.props; if (!name) throw new Error('animation name must be assigned'); return `${name}-${inner}`; } render() { let { children } = this.props; children = React.Children.only(children); const { isInnerShow, animationClass } = this.state; const element = { ...children, props: { ...children.props, className: `${children.props.className} ${animationClass}`, onAnimationEnd: this.handleAnimationEnd.bind(this), }, }; return isInnerShow && element; } } export default Animation;
以上是“如何在React中寫一個(gè)Animation組件并為組件進(jìn)入和離開加上動(dòng)畫/過度效果”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對(duì)大家有所幫助,如果還想學(xué)習(xí)更多知識(shí),歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道!
當(dāng)前文章:如何在React中寫一個(gè)Animation組件并為組件進(jìn)入和離開加上動(dòng)畫/過度效果
分享鏈接:http://jinyejixie.com/article38/ppppsp.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供云服務(wù)器、移動(dòng)網(wǎng)站建設(shè)、營(yíng)銷型網(wǎng)站建設(shè)、品牌網(wǎng)站建設(shè)、網(wǎng)站內(nèi)鏈、定制開發(fā)
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來源: 創(chuàng)新互聯(lián)