https://github.com/lottie-react-native/lottie-react-native
Animation
在PanResponder中使用动画事件的示例
import React, { useRef } from "react";import { Animated, View, StyleSheet, PanResponder, Text } from "react-native";const App = () => {const pan = useRef(new Animated.ValueXY()).current;const panResponder = useRef(PanResponder.create({onMoveShouldSetPanResponder: () => true,onPanResponderMove: Animated.event([null,{ dx: pan.x, dy: pan.y }]),onPanResponderRelease: () => {Animated.spring(pan, { toValue: { x: 0, y: 0 } }).start();}})).current;return (<View style={styles.container}><Text style={styles.titleText}>Drag & Release this box!</Text><Animated.Viewstyle={{transform: [{ translateX: pan.x }, { translateY: pan.y }]}}{...panResponder.panHandlers}><View style={styles.box} /></Animated.View></View>);}const styles = StyleSheet.create({container: {flex: 1,alignItems: "center",justifyContent: "center"},titleText: {fontSize: 14,lineHeight: 24,fontWeight: "bold"},box: {height: 150,width: 150,backgroundColor: "blue",borderRadius: 5}});export default App;
