反应原生的CSS动画和转换

use*_*979 8 css react-native

只是想知道我们是否可以在react-native中使用CSS动画和转换?即

 <Image style={animateImage} / >

StyleSheet.create({

 animateImage {
   width: 100px;
   height: 100px;
   background: red;
   transition: width 3s;
   transition-delay: 1s;
 }

});
Run Code Online (Sandbox Code Playgroud)

Vik*_*Seč 10

你不能.与vanilla CSS相比,react-native Stylesheet 属性非常有限.

对于动画,请查看Animated API.