Giter Site home page Giter Site logo

rapidinterpolator's Introduction

RapidInterpolator

A Java library that adjust interpolator dynamicly(Inspired by Facebook Rebound)

As a UI Prototype Designer & Engineer.The most painful part is compiling.After I finished the code work.I had to wait for about 10 seconds. So I write this for adjust animation's Parameter efficiently.

Example:

Show

Import:

1.Add these into your project.

InterpolatorAnimator.java
InterpolatorConfig.java
InterpolatorConfigRegistry.java
InterpolatorConfigurationView.java 

2.Import them in your MainActivity

import com.martin.interpolator.InterpolatorAnimator;
import com.martin.interpolator.InterpolatorConfig;
import com.martin.interpolator.InterpolatorConfigRegistry;
import com.martin.interpolator.InterpolatorConfigurationView;

Usage:

1.In you layout xml,add this:

<com.martin.interpolator.InterpolatorConfigurationView
    android:id="@+id/interpolator_configurator"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_gravity="bottom"
    android:layout_alignParentBottom="true"
    android:layout_alignParentStart="true">
</com.martin.interpolator.InterpolatorConfigurationView>

2.Create a function to set Interpolator Config & add ConfiguratorView

private void interpolatorConfig(){

    //Find InterpolatorConfigurationView in XML
    mInterpolatorConfiguratorView = (InterpolatorConfigurationView) findViewById(R.id.interpolator_configurator);

    //Setting Interpolator Config
    config0 = InterpolatorConfig.fromInterpolatorDurationDelayTime("ElasticEaseInOut",200,100);
    config1 = InterpolatorConfig.fromInterpolatorDurationDelayTime("CubicEaseInOut",300,150);
    config2 = InterpolatorConfig.fromInterpolatorDurationDelayTime("BounceEaseInOut",420,20);
    config3 = InterpolatorConfig.fromInterpolatorDurationDelayTime("DecelerateCubic",230,120);
    config4 = InterpolatorConfig.fromInterpolatorDurationDelayTime("FastOutLinearIn",320,40);
    config5 = InterpolatorConfig.fromInterpolatorDurationDelayTime("CircEaseOut",280,80);
    config6 = InterpolatorConfig.fromInterpolatorDurationDelayTime("AnticipateOvershoot",250,50);
    config7 = InterpolatorConfig.fromInterpolatorDurationDelayTime("FastOutSlowIn",375,200);
    config8 = InterpolatorConfig.fromInterpolatorDurationDelayTime("BackEaseIn",275,150);

    //Add Interpolator Config into ConfigurationView
    InterpolatorConfigRegistry.getInstance().removeAllInterpolatorConfig();
    InterpolatorConfigRegistry.getInstance().addInterpolatorConfig(config0, "Scale_Anim_1");
    InterpolatorConfigRegistry.getInstance().addInterpolatorConfig(config1, "Scale_Anim_2");
    InterpolatorConfigRegistry.getInstance().addInterpolatorConfig(config2, "Scale_Anim_3");
    InterpolatorConfigRegistry.getInstance().addInterpolatorConfig(config3, "Scale_Anim_4");
    InterpolatorConfigRegistry.getInstance().addInterpolatorConfig(config4, "Scale_Anim_5");
    InterpolatorConfigRegistry.getInstance().addInterpolatorConfig(config5, "Scale_Anim_6");
    InterpolatorConfigRegistry.getInstance().addInterpolatorConfig(config6, "Scale_Anim_7");
    InterpolatorConfigRegistry.getInstance().addInterpolatorConfig(config7, "Scale_Anim_8");
    InterpolatorConfigRegistry.getInstance().addInterpolatorConfig(config8, "Scale_Anim_9");

    mInterpolatorConfiguratorView.refreshInterpolatorConfigurations();
    mInterpolatorConfiguratorView.bringToFront();
}

3.Use it directly!

findViewById(R.id.button).setOnClickListener(new View.OnClickListener() {
    @Override
    public void onClick(View view) {

        mIsOut = !mIsOut;
        float startValue = mIsOut?1f:0f;
        float endValue = mIsOut?0f:1f;

        InterpolatorAnimator animator = new InterpolatorAnimator(view, "translationY", startValue, endValue,config0.interpolator,config0.duration,config0.delayTime);


    }
});

Types of Interpolator

47 different easing interpolators(Which contains native interpolators & interpolators from Easing.net)

"Linear",
"LinearOutSlowIn",
"FastOutLinearIn",
"FastOutSlowIn",
"AccelerateQuad",
"AccelerateCubic",
"AccelerateQuint",
"AccelerateDecelerate",
"DecelerateQuad",
"DecelerateCubic",
"DecelerateQuint",
"Anticipate",
"AnticipateOvershoot",
"Overshoot",
"Bounce",
"Cycle",
"LinearEaseNone",
"SineEaseIn",
"SineEaseOut",
"SineEaseInOut",
"QuadEaseIn",
"QuadEaseOut",
"QuadEaseInOut",
"CubicEaseIn",
"CubicEaseOut",
"CubicEaseInOut",
"QuartEaseIn",
"QuartEaseOut",
"QuartEaseInOut",
"QuintEaseIn",
"QuintEaseOut",
"QuintEaseInOut",
"ExpoEaseIn",
"ExpoEaseOut",
"ExpoEaseInOut",
"CircEaseIn",
"CircEaseOut",
"CircEaseInOut",
"BackEaseIn",
"BackEaseOut",
"BackEaseInOut",
"ElasticEaseIn",
"ElasticEaseOut",
"ElasticEaseInOut",
"BounceEaseIn",
"BounceEaseOut",
"BounceEaseInOut"

Thanks

Special thanks to CymChad,he gave me lots of help in java coding.

rapidinterpolator's People

Contributors

martinrgb avatar

Watchers

 avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.