RN-LayoutAnimation

LayoutAnimation,布局動(dòng)畫

當(dāng)視圖添加、刪除、移動(dòng)時(shí),會(huì)顯得很生硬,就是突然地出現(xiàn)效果。
使用LayoutAnimation就會(huì)在添加、刪除、移動(dòng)時(shí),有一個(gè)過(guò)渡的動(dòng)畫效果。
使用很簡(jiǎn)單

if (Platform.OS === 'android') {
    UIManager.setLayoutAnimationEnabledExperimental(true)
}

第一種方法:LayoutAnimation.easeInEaseOut();

componentWillUpdate() {
  console.log('componentWillUpdate...');
  LayoutAnimation.spring();
  LayoutAnimation.easeInEaseOut();
  LayoutAnimation.linear();
}

第二種方法:LayoutAnimation.configureNext(config),自定義動(dòng)畫效果

componentWillUpdate() {
  console.log('componentWillUpdate...');
  LayoutAnimation.configureNext(config)
}

需要自定義config

var config = {
    duration: 800, // 動(dòng)畫時(shí)間
    create: {
    // spring,linear,easeInEaseOut,easeIn,easeOut,keyboard
      type: LayoutAnimation.Types.linear,
    // opacity,scaleXY 透明度,位移
      property: LayoutAnimation.Properties.opacity,
    },
    update: {
    // 更新時(shí)顯示的動(dòng)畫
      type: LayoutAnimation.Types.easeInEaseOut,
    },
  };

注: 在 componentWillUpdate() 這里面寫動(dòng)畫,當(dāng)前所有頁(yè)面的布局改變,都會(huì)有動(dòng)畫效果。如果只想某個(gè)動(dòng)作改變布局需要?jiǎng)赢嬓Ч梢栽谡{(diào)用方法的時(shí)候?qū)?/h1>
 <TouchableOpacity onPress = {()=>{
                        LayoutAnimation.spring();
                        this.setState({marginTop:this.state.marginTop + 100})
                    }}>
                        <Text>Text DOWN</Text>
</TouchableOpacity>
摘取網(wǎng)絡(luò)圖片.gif

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
【社區(qū)內(nèi)容提示】社區(qū)部分內(nèi)容疑似由AI輔助生成,瀏覽時(shí)請(qǐng)結(jié)合常識(shí)與多方信息審慎甄別。
平臺(tái)聲明:文章內(nèi)容(如有圖片或視頻亦包括在內(nèi))由作者上傳并發(fā)布,文章內(nèi)容僅代表作者本人觀點(diǎn),簡(jiǎn)書系信息發(fā)布平臺(tái),僅提供信息存儲(chǔ)服務(wù)。

相關(guān)閱讀更多精彩內(nèi)容

  • Android 自定義View的各種姿勢(shì)1 Activity的顯示之ViewRootImpl詳解 Activity...
    passiontim閱讀 178,970評(píng)論 25 709
  • 發(fā)現(xiàn) 關(guān)注 消息 iOS 第三方庫(kù)、插件、知名博客總結(jié) 作者大灰狼的小綿羊哥哥關(guān)注 2017.06.26 09:4...
    肇東周閱讀 15,201評(píng)論 4 61
  • 寄一份甜美 給當(dāng)年的狂歡調(diào)味 讓你知道 我除了不悔 還有溫柔 可以給 散一散酒味 說(shuō)一聲久違 回憶都已就位 票根怎...
    段童閱讀 158評(píng)論 0 1
  • 現(xiàn)在談?wù)撝斯ぶ悄?,具有劃時(shí)代的意義。這個(gè)意義在于智慧從生物向非生物的轉(zhuǎn)變。同時(shí),隨著非生物智慧的產(chǎn)生,也許會(huì)推動(dòng)...
    水墨藍(lán)的玻璃閱讀 1,124評(píng)論 0 0
  • 我們最大的錯(cuò)誤,就是把最差的脾氣和最糟糕的一面都給了最親近的人,卻把耐心和寬容給了陌生人。 命中注定,在不懂愛的年...
    爾笙姑娘閱讀 1,865評(píng)論 0 3

友情鏈接更多精彩內(nèi)容