我理解 Animated.Code 并且我在每一帧中都得到了 console.log
我想知道 Animated.interpolate 的输出当前值
代码片段
const diffClampScrollY = Animated.diffClamp(this.props.Animation_Header_Heaght, 0, HEADER_HEIGHT)
const headerY = Animated.interpolate(diffClampScrollY, {
inputRange: [0, HEADER_HEIGHT],
outputRange: [0, -HEADER_HEIGHT],
})
render(){
return(
<Animated.Code>
{() =>
call([headerY], () => {
console.log(headerY)
})
</Animated.Code>
)
}
我不理解来自console.log(headerY)的对象
我想知道单个当前值?