react-native 怎么实现遮罩层
1 回答
有只小跳蛙
TA贡献1824条经验 获得超8个赞
创建一个Animated.Value
[javascript] view plain copy
<Animated.View style={ styles.mask } >
</Animated.View>
<Animated.View style={[styles.tip , {transform: [{
translateY: this.state.offset.interpolate({
inputRange: [0, 1],
outputRange: [height, (height-aHeight -34)]
}),
}]
}]}>
lt;/Animated.View>
- 1 回答
- 0 关注
- 2460 浏览
添加回答
举报
0/150
提交
取消