IOS水平旋转图像

时间:2019-05-24 14:52:00

标签: react-native animation rotation

im试图使用对rotateY的反应本机动画旋转图像

问题是,在iOS中,它仅旋转了一半的图像,而与android相比,它做得很好

我正在附加适用于android和iOS的链接:

ios https://streamable.com/nmqin

android https://streamable.com/64p25

animateLogo () {
   this.animatedLogo.setValue(0)
   Animated.timing(
   this.animatedLogo, {
     toValue: 1,
     duration: 1500,
     easing: Easing.linear,

   }
 ).start();
 }

render() {
   const spin = this.animatedLogo.interpolate({
     inputRange: [0,1],
     outputRange: ['0deg', '1440deg']
   });

    return (
     <View style={styles.container}>

  <Animated.Image
       style={[styles.logo,{
         width:110,
         height:150,
         transform: [{ rotateY: spin }]
       }]}
         source={require('./assets/logo_white1.png')}
     />
</View>)}

我一直在尝试在转换中添加相应的内容,但是没有用

0 个答案:

没有答案