在React native中创建一个微调轮

时间:2018-09-26 08:41:36

标签: react-native react-native-animatable

您好,我正在尝试使用Animatable在本机中进行微调。按照此处的示例(https://code.tutsplus.com/tutorials/practical-animations-in-react-native--cms-27567),我可以旋转一个矩形框。这是代码!

  <Animatable.View
                        ref={animation[0]}
                        style={[styles.box, { backgroundColor: animation[1] }]}
                        animation={animation[0]}
                        iterationCount={"infinite"}>
                        <Text style={styles.box_text}>{animation[0]}</Text>
 </Animatable.View>


const styles = StyleSheet.create({
        container: {
            flex: 1,
            flexDirection: 'column',
            padding: 20
        },
        row: {
            flex: 1,
            flexDirection: 'row',
            justifyContent: 'space-between'
        },
        box: {
            alignItems: 'center',
            justifyContent: 'center',
            height: 100,
            width: 100,
            backgroundColor: '#ccc'
        },
        box_text: {
            color: '#FFF'
        }
    });

但是问题在这里,我们正在旋转使用css创建的框,有没有办法我可以使用html和css制作自己的微调框并根据业务规则旋转并停止它?

enter image description here

需要一些指导和建议谢谢!

0 个答案:

没有答案