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/31.
*/
public class FlipH extends BaseEffects{
@Override
protected void setupAnimation(View view) {
getAnimatorSet().playTogether(
ObjectAnimator.ofFloat(view, "rotationY", -90, 0).setDuration(mDuration)
);
}
}