8000 GitHub - bluesky51/AndroidSequenceAnimations
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

bluesky51/AndroidSequenceAnimations

 
 

Repository files navigation

中文请看这里

Android Sequence Animations

The library can help you build complex animations quickly, which wrapped Android animation, supporting parallel and serial animation combination.

Demo

Usage

Step 1

Gradle

dependencies {
        compile "com.steven:AndroidSequenceaAimations:1.2.0"
}

Step 2

EasyAnimation.with(
                    sequence(
                            fadeIn(1000), 
                            together(rotateTo(500, 360), 
                                    scaleTo(500, 5).easing(Skill.BackEaseIn)
                            ))
            ).playOn(targetView);

Actions

Instant

FlipX, FlipY, Show, Hide, CallFunc

Interval

FadeIn,FadeOut,FadeTo,MoveBy,MoveTo,MoveXTo,MoveYTo,RotateBy,RotateTo,ScaleTo,DelayTime

Update

ColorTo,ValueIntTo,ValueFloatTo

Container

Sequence,Together,Repeat,RepeatForever

Todo

1.Interval Action:BezierMoveTo
2.Interval Action:Shake

Thanks

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Java 100.0%
0