-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAnimation.js
More file actions
82 lines (75 loc) · 1.94 KB
/
Animation.js
File metadata and controls
82 lines (75 loc) · 1.94 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
import React, { useEffect, useRef } from 'react';
import { View, Animated, Easing, Text, StyleSheet } from 'react-native';
const Animation = () => {
const textOpacityValue = useRef(new Animated.Value(0)).current;
const arrowTranslateYValue = useRef(new Animated.Value(0)).current;
useEffect(() => {
startTextAnimation();
startArrowAnimation();
}, []);
const startTextAnimation = () => {
Animated.timing(textOpacityValue, {
toValue: 1,
duration: 1500,
easing: Easing.ease,
useNativeDriver: false,
}).start();
};
const startArrowAnimation = () => {
Animated.loop(
Animated.sequence([
Animated.timing(arrowTranslateYValue, {
toValue: 20,
duration: 500,
easing: Easing.ease,
useNativeDriver: false,
}),
Animated.timing(arrowTranslateYValue, {
toValue: 0,
duration: 500,
easing: Easing.ease,
useNativeDriver: false,
}),
])
).start();
};
return (
<View style={styles.container}>
<View style={styles.animationContainer}>
<Animated.Text style={[styles.text, { opacity: textOpacityValue }]}>Upload Image</Animated.Text>
<Animated.View style={[styles.arrowContainer, { transform: [{ translateY: arrowTranslateYValue }] }]}>
<Text style={styles.arrow}>▼</Text>
</Animated.View>
</View>
</View>
);
};
const styles = StyleSheet.create({
container: {
justifyContent: 'center',
alignItems: 'center',
width: 400,
height: 400,
backgroundColor:'#F3EEEA',
marginBottom:2
},
animationContainer: {
width: 400,
height: 400,
justifyContent: 'center',
alignItems: 'center',
},
text: {
fontSize: 24,
fontWeight: 'bold',
marginBottom: 20,
},
arrowContainer: {
justifyContent: 'center',
alignItems: 'center',
},
arrow: {
fontSize: 30,
},
});
export default Animation;