Examples
Custom Animations
Press Swipe
💡

Check out the press-swipe animation demo for the full source code here (opens in a new tab)

Loading...
import * as React from "react";
import { View } from "react-native";
import Animated, {
	interpolate,
	useAnimatedStyle,
	useSharedValue,
	withTiming,
} from "react-native-reanimated";
import Carousel, { TAnimationStyle } from "react-native-reanimated-carousel";
 
import { window } from "@/constants/sizes";
import { SlideItem } from "@/components/SlideItem";
import { PURPLE_IMAGES } from "@/constants/purple-images";
 
const PAGE_WIDTH = window.width;
 
function Index() {
	const pressAnim = useSharedValue<number>(0);
	const animationStyle: TAnimationStyle = React.useCallback((value: number) => {
		"worklet";
 
		const zIndex = interpolate(value, [-1, 0, 1], [-1000, 0, 1000]);
		const translateX = interpolate(
			value,
			[-1, 0, 1],
			[-PAGE_WIDTH, 0, PAGE_WIDTH],
		);
 
		return {
			transform: [{ translateX }],
			zIndex,
		};
	}, []);
 
	return (
		<View
			id="carousel-component"
			dataSet={{ kind: "custom-animations", name: "press-swipe" }}
		>
			<Carousel
				loop={true}
				style={{ width: PAGE_WIDTH, height: 240 }}
				width={PAGE_WIDTH}
				data={PURPLE_IMAGES}
				onScrollStart={() => {
					pressAnim.value = withTiming(1);
				}}
				onScrollEnd={() => {
					pressAnim.value = withTiming(0);
				}}
				renderItem={({ index }) => {
					return <CustomItem index={index} key={index} pressAnim={pressAnim} />;
				}}
				customAnimation={animationStyle}
				scrollAnimationDuration={1200}
			/>
		</View>
	);
}
 
interface ItemProps {
	pressAnim: Animated.SharedValue<number>;
	index: number;
}
 
const CustomItem: React.FC<ItemProps> = ({ pressAnim, index }) => {
	const animStyle = useAnimatedStyle(() => {
		const scale = interpolate(pressAnim.value, [0, 1], [1, 0.9]);
		const borderRadius = interpolate(pressAnim.value, [0, 1], [0, 30]);
 
		return {
			transform: [{ scale }],
			borderRadius,
		};
	}, []);
 
	return (
		<Animated.View style={[{ flex: 1, overflow: "hidden" }, animStyle]}>
			<SlideItem index={index} />
		</Animated.View>
	);
};
 
export default Index;