-
-
Save ach206/1b8ce1ee09a174520b061f0ff195d8e9 to your computer and use it in GitHub Desktop.
React Native Animated.sequence()
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React, { Component } from 'react'; | |
import { | |
AppRegistry, | |
StyleSheet, | |
Text, | |
View, | |
Animated | |
} from 'react-native' | |
const arr = [] | |
for (var i = 0; i < 500; i++) { | |
arr.push(i) | |
} | |
class animations extends Component { | |
constructor () { | |
super() | |
this.animatedValue = [] | |
arr.forEach((value) => { | |
this.animatedValue[value] = new Animated.Value(0) | |
}) | |
} | |
componentDidMount () { | |
this.animate() | |
} | |
animate () { | |
const animations = arr.map((item) => { | |
return Animated.timing( | |
this.animatedValue[item], | |
{ | |
toValue: 1, | |
duration: 50 | |
} | |
) | |
}) | |
Animated.sequence(animations).start() | |
} | |
render () { | |
const animations = arr.map((a, i) => { | |
return <Animated.View key={i} style={{opacity: this.animatedValue[a], height: 20, width: 20, backgroundColor: 'red', marginLeft: 3, marginTop: 3}} /> | |
}) | |
return ( | |
<View style={styles.container}> | |
{animations} | |
</View> | |
) | |
} | |
} | |
const styles = StyleSheet.create({ | |
container: { | |
flex: 1, | |
flexDirection: 'row', | |
flexWrap: 'wrap' | |
} | |
}) | |
AppRegistry.registerComponent('animations', () => animations); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment