Questions tagged [react-animations]

109 questions
0
votes
2 answers

How to add animations for common Reactstrap components?

I'm just starting with ReactJS and one of my first problems is that I don't know how I can add animations to different reactstrap components. For example, I would like to add animate.css enter/leave animations for reactstrap dropdowns. How can I do…
0
votes
0 answers

Is there a way to append a value to a prop? React Native

My current problem is that my animation is not activating for the correct id that was assigned: anim_star = (id) => { let progress = this.state.progress; progress[id] = new Animated.Value(0); this.setState({ progress…
Laney Williams
  • 573
  • 3
  • 13
  • 34
0
votes
2 answers

How to make slideIn AND slideOut with styled-components with react-animations

I'm working on building a component that displays none or block depending on it's isActive prop. I've managed to make it slideInDown using react-animations with styled-components like this. import styled, { keyframes } from…
Barry Michael Doyle
  • 9,333
  • 30
  • 83
  • 143
-1
votes
1 answer

Ract Native Animated API : I can't move the element correctly and leave a space between the elements while using the react native Animated API

I am trying to implement this carousel in React Native and use React Native Animated to implement it. I wrote the code as follows const itemSize = AppDevice.width / 4; const marginValue = 5; const HomeScreen = ({navigation}) => { …
1 2 3 4 5 6 7
8