this.state = { opacityValue: new Animated.Value(1), } Animated.timing(this.state.opacityValue, { toValue: 0, // 目標(biāo)值 duration: 100, // 動畫時間 easing: Easing.linear // 緩動函數(shù) }).start(); 如果我想進(jìn)行顏色變化,比如從#000變化到#fff怎么做?
RN如何進(jìn)行顏色變化?
幕布斯7119047
2018-08-11 10:09:20