项目作者: gumuxiansheng

项目描述 :
Genie effect Android lib
高级语言: Java
项目地址: git://github.com/gumuxiansheng/GenieEffectApplication.git
创建时间: 2017-07-27T06:13:37Z
项目社区:https://github.com/gumuxiansheng/GenieEffectApplication

开源协议:

下载


GenieEffectApplication

Genie effect Android lib

Currently support animation to right/bottom/top sides. Left side is remained to be done.

image

Usage

The sample app shows the way to use this genie effect library.

  1. private AnimSurface mAnimSurface; // declare the surface to show the animation, usually capture all the screen.
  2. if (mAnimSurface == null) {
  3. mAnimSurface = new AnimSurface(GenieSampleActivity.this);
  4. mAnimSurface.setLayoutParams(new LinearLayout.LayoutParams(-1, -1));
  5. }
  6. // By passing the view to be animated to the util's function to start the animation on AnimSurface.
  7. AnimSurfaceUtil.startAnimation(GenieSampleActivity.this, mAnimSurface, image, mReverse); // image is the view to be animated.
  8. mReverse = !mReverse;

where image is the view to be animated.

Thoughts

The path in animation is very important here, the key in this lib is to calculate the right shape at time T then apply it with mesh.

The illustration is like below:

The final path:

pathIllustrate1

The path on half way:

pathIllustrate2