Перейти к содержанию

withDecay

Функция withDecay позволяет создавать анимацию, имитирующую движение объектов. Анимация запускается с заданной скоростью и со временем замедляется в соответствии с заданным коэффициентом замедления, пока не остановится.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
import React from 'react';
import { StyleSheet, View } from 'react-native';
import Animated, {
    useAnimatedStyle,
    useSharedValue,
    withDecay,
} from 'react-native-reanimated';
import {
    Gesture,
    GestureDetector,
    GestureHandlerRootView,
} from 'react-native-gesture-handler';

const SIZE = 120;

export default function App() {
    const offset = useSharedValue(0);
    const width = useSharedValue(0);

    const onLayout = (event) => {
        width.value = event.nativeEvent.layout.width;
    };

    const pan = Gesture.Pan()
        .onChange((event) => {
            // highlight-next-line
            offset.value += event.changeX;
        })
        .onFinalize((event) => {
            // highlight-start
            offset.value = withDecay({
                velocity: event.velocityX,
                rubberBandEffect: true,
                clamp: [
                    -(width.value / 2) + SIZE / 2,
                    width.value / 2 - SIZE / 2,
                ],
            });
            // highlight-end
        });

    const animatedStyles = useAnimatedStyle(() => ({
        transform: [{ translateX: offset.value }],
    }));

    return (
        <GestureHandlerRootView style={styles.container}>
            <View
                onLayout={onLayout}
                style={styles.wrapper}
            >
                <GestureDetector gesture={pan}>
                    <Animated.View
                        style={[styles.box, animatedStyles]}
                    />
                </GestureDetector>
            </View>
        </GestureHandlerRootView>
    );
}

const styles = StyleSheet.create({
    container: {
        flex: 1,
        alignItems: 'center',
        justifyContent: 'center',
        height: '100%',
    },
    wrapper: {
        flex: 1,
        width: '100%',
        alignItems: 'center',
        justifyContent: 'center',
    },
    box: {
        height: SIZE,
        width: SIZE,
        backgroundColor: '#b58df1',
        borderRadius: 20,
        cursor: 'grab',
        alignItems: 'center',
        justifyContent: 'center',
    },
});

Описание

1
2
3
4
5
6
import { withDecay } from 'react-native-reanimated';

function App() {
    sv.value = withDecay({ velocity: 1 });
    // ...
}

Типизация

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
type AnimatableValue = number | string | number[];

interface WithDecayConfig {
    deceleration?: number;
    velocity?: number;
    clamp?: [number, number];
    velocityFactor?: number;
    rubberBandEffect?: boolean;
    rubberBandFactor?: number;
}

function withDecay(
    userConfig: WithDecayConfig,
    callback?: (
        finished?: boolean,
        current?: AnimatableValue
    ) => void
): number;

Аргументы

config

Конфигурация анимации распада.

Доступные свойства:

Имя Тип По умолчанию Описание
velocity (опционально) number 0 Начальная скорость анимации.
deceleration (опционально) number 0.998 Скорость, с которой скорость уменьшается с течением времени.
clamp (опционально) [number, number] [] Массив из двух чисел, ограничивающий диапазон анимации. Анимация останавливается при достижении любого из этих чисел, если только опция rubberBandEffect не установлена в true.
velocityFactor (опционально) number 1 Множитель скорости.
rubberBandEffect (опционально) boolean false Заставляет анимацию отскакивать за пределы, указанные в clamp.
rubberBandFactor (опционально) number 0.6 Сила эффекта резинки.

callback

Функция, вызываемая по завершении анимации. В случае отмены анимации обратный вызов получит в качестве аргумента false, в противном случае - true.

Возвращает

withDecay возвращает объект анимации. Он может быть либо напрямую присвоен shared value, либо использован в качестве значения для объекта стиля, возвращаемого из useAnimatedStyle.

Пример

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
import React from 'react';
import { StyleSheet, View } from 'react-native';
import Animated, {
    useAnimatedStyle,
    useSharedValue,
    withDecay,
} from 'react-native-reanimated';
import {
    Gesture,
    GestureDetector,
    GestureHandlerRootView,
} from 'react-native-gesture-handler';

const SIZE = 180;

export default function App() {
    const offset = useSharedValue(0);
    const width = useSharedValue(0);

    const onLayout = (event) => {
        width.value = event.nativeEvent.layout.width;
    };

    const pan = Gesture.Pan()
        .onChange((event) => {
            offset.value += event.changeX;
        })
        .onFinalize((event) => {
            offset.value = withDecay({
                velocity: event.velocityX,
                rubberBandEffect: true,
                clamp: [
                    -(width.value / 2) + SIZE / 2,
                    width.value / 2 - SIZE / 2,
                ],
            });
        });

    const animatedStyles = useAnimatedStyle(() => ({
        transform: [{ translateX: offset.value }],
    }));

    return (
        <GestureHandlerRootView style={styles.container}>
            <View
                onLayout={onLayout}
                style={styles.wrapper}
            >
                <GestureDetector gesture={pan}>
                    <Animated.View
                        style={[
                            styles.grab,
                            animatedStyles,
                        ]}
                    >
                        <Train />
                    </Animated.View>
                </GestureDetector>
                <TrainTracks />
            </View>
        </GestureHandlerRootView>
    );
}

function TrainTracks() {
    return (
        <View style={{ flexDirection: 'column' }}>
            <View style={styles.rail} />
            <View style={{ flexDirection: 'row' }}>
                {Array.from({ length: 20 }).map((_, i) => {
                    return (
                        <View
                            key={i}
                            style={styles.track}
                        />
                    );
                })}
            </View>
        </View>
    );
}

function Train() {
    return (
        <View style={styles.column}>
            <View style={styles.row}>
                <View style={styles.back} />
                <View style={styles.chimney} />
            </View>
            <View style={styles.row}>
                <View style={styles.body} />
                <View style={styles.front} />
            </View>
            <View style={styles.stripe} />
            <View style={styles.underbody} />
            <View style={styles.row}>
                <View style={styles.wheel} />
                <View style={styles.wheel} />
                <View style={styles.wheel} />
            </View>
        </View>
    );
}

const styles = StyleSheet.create({
    container: {
        flex: 1,
        alignItems: 'center',
        justifyContent: 'center',
        height: '100%',
    },
    wrapper: {
        flex: 1,
        width: '100%',
        alignItems: 'center',
        justifyContent: 'center',
    },
    grab: {
        cursor: 'grab',
    },
    text: {
        color: 'white',
        textTransform: 'uppercase',
        fontWeight: 'bold',
    },
    row: {
        flexDirection: 'row',
    },
    column: {
        flexDirection: 'column',
    },
    wheel: {
        height: 50,
        width: 50,
        backgroundColor: '#537FE7',
        borderRadius: 50,
        marginHorizontal: 5,
    },
    underbody: {
        width: SIZE,
        height: 30,
        backgroundColor: 'black',
        top: 30,
    },
    stripe: {
        width: SIZE,
        height: 10,
        backgroundColor: 'red',
        top: 30,
    },
    front: {
        width: 50,
        height: 50,
        backgroundColor: 'black',
        top: 30,
    },
    body: {
        width: 130,
        height: 50,
        backgroundColor: '#537FE7',
        top: 30,
    },
    chimney: {
        width: 20,
        height: 30,
        backgroundColor: 'black',
        top: 30,
        right: 15,
        marginLeft: 'auto',
    },
    back: {
        width: 50,
        height: 15,
        backgroundColor: '#537FE7',
        top: 30 + 15,
    },
    track: {
        height: 10,
        width: 20,
        backgroundColor: '#B8621B',
        marginHorizontal: 15,
    },
    rail: {
        width: '100%',
        height: 10,
        backgroundColor: 'gray',
    },
});

Замечания

  • Обратный вызов, переданный во втором аргументе, автоматически workletized и запускается на UI thread.

Совместимость с платформами

Android iOS Web

Ссылки

Комментарии