animatedjs/animated

List of supported animation? Fade-in, fade-out...

Opened this issue · 0 comments

Hi!
The docs are not filled till the end. It's impossible to find supported animations.

Where I could check the list of currently supported animations?

For now, as for example, I need slide-in, slide-out animations. How it could be achieved?

I create animations in such way, if it does make sense:

   <Animated.div className="layer"                          
       style={{                    
          transform: [
            {scale: this.state.animation},
            {rotate: this.state.spinning.interpolate({
               inputRange: [1, 2], outputRange: ['0deg', '1800deg']
                 })}
              ], 
             opacity: this.state.fadeAnim,
             animation: this.state.easining
          }}>    
   </Animated.div>