-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAnimatedExample.tsx
More file actions
138 lines (129 loc) · 3.54 KB
/
AnimatedExample.tsx
File metadata and controls
138 lines (129 loc) · 3.54 KB
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
import { HeroCarousel, useInterpolateInsideCarousel } from '@strv/react-native-hero-carousel'
import { SafeAreaView, StyleSheet, View, Text, Dimensions } from 'react-native'
import { Image } from 'expo-image'
import { LinearGradient } from 'expo-linear-gradient'
import Animated, { useAnimatedStyle, interpolate, Extrapolation } from 'react-native-reanimated'
import { Pagination } from './components/Pagination'
import { useEffect } from 'react'
import { BlurView } from 'expo-blur'
const { width: SCREEN_WIDTH, height: SCREEN_HEIGHT } = Dimensions.get('window')
const getRandomImageUrl = () => {
return `https://picsum.photos/${SCREEN_WIDTH * 3}/${SCREEN_HEIGHT * 3}?random=${Math.floor(
Math.random() * 1000,
)}`
}
const images = Array.from({ length: 5 }, getRandomImageUrl)
const Slide = ({ image, title, index }: { image: string; title: string; index: number }) => {
const progress = useInterpolateInsideCarousel({
valueBefore: 0,
thisValue: 1,
valueAfter: 0,
offset: 0.2,
})
const rStyle = useAnimatedStyle(() => {
return {
flex: 1,
width: '100%',
height: '100%',
alignItems: 'center',
justifyContent: 'center',
transformOrigin: 'center',
transform: [
{
scale: interpolate(progress.value, [0, 1], [0.8, 1], Extrapolation.CLAMP),
},
{
rotate: `${interpolate(progress.value, [0, 1], [-15, 0], Extrapolation.CLAMP)}deg`,
},
],
opacity: progress.value,
}
})
return (
<View key={index} style={styles.slide}>
<Animated.View style={rStyle}>
<Image source={{ uri: image }} style={styles.image} contentFit="cover" transition={200} />
</Animated.View>
<LinearGradient colors={['transparent', 'rgba(0,0,0,0.8)']} style={styles.gradient}>
<BlurView style={styles.blurView} experimentalBlurMethod="dimezisBlurView">
<Text style={styles.title}>{title}</Text>
</BlurView>
</LinearGradient>
</View>
)
}
export default function AnimatedExample() {
// Preload all images when component mounts
useEffect(() => {
Image.prefetch(images)
}, [])
return (
<HeroCarousel.Provider>
<SafeAreaView style={styles.container}>
<View style={styles.carouselContainer}>
<HeroCarousel>
{images.map((image, index) => (
<Slide key={index} image={image} title={`Slide ${index + 1}`} index={index} />
))}
</HeroCarousel>
</View>
<View style={styles.paginationContainer}>
<Pagination total={images.length} />
</View>
</SafeAreaView>
</HeroCarousel.Provider>
)
}
const styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: 'black',
},
carouselContainer: {
flex: 0.8,
borderRadius: 16,
overflow: 'hidden',
marginTop: 64,
},
paginationContainer: {
justifyContent: 'center',
alignItems: 'center',
flex: 0.2,
},
blurView: {
bottom: 40,
left: 20,
position: 'absolute',
borderRadius: 16,
padding: 20,
overflow: 'hidden',
},
slide: {
flex: 1,
width: '100%',
height: '100%',
overflow: 'hidden',
},
image: {
width: '100%',
height: '100%',
transformOrigin: 'center',
transform: [{ scale: 1.3 }],
backgroundColor: 'gray',
},
gradient: {
position: 'absolute',
bottom: 0,
left: 0,
right: 0,
height: '50%',
justifyContent: 'flex-end',
padding: 20,
},
title: {
fontSize: 32,
lineHeight: 32,
fontWeight: 'bold',
color: 'white',
},
})