package com.marshalchen.common.uimodule.niftymodaldialogeffects.effects;
import android.view.View;
import com.marshalchen.common.uimodule.nineoldandroids.animation.ObjectAnimator;
/**
* Created by lee on 2014/7/30.
*/
public class FadeIn extends BaseEffects{
@Override
protected void setupAnimation(View view) {
getAnimatorSet().playTogether(
ObjectAnimator.ofFloat(view,"alpha",0,1).setDuration(mDuration)
);
}
}