Home
last modified time | relevance | path

Searched refs:StepperAnimation (Results 1 – 2 of 2) sorted by relevance

/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/stepper/
H A Dstepper_animation_controller.h29 class StepperAnimation : public AceType {
30 DECLARE_ACE_TYPE(StepperAnimation, AceType);
33 StepperAnimation(const WeakPtr<PipelineContext>& context, double start, double end, int delay,
35 ~StepperAnimation() override = default;
98 RefPtr<StepperAnimation> fromIndexOpacityAnimation_;
99 RefPtr<StepperAnimation> toIndexOpacityAnimation_;
100 RefPtr<StepperAnimation> fromIndexTranslateAnimationNext_;
101 RefPtr<StepperAnimation> toIndexTranslateAnimationNext_;
102 RefPtr<StepperAnimation> fromIndexTranslateAnimationBack_;
103 RefPtr<StepperAnimation> toIndexTranslateAnimationBack_;
H A Dstepper_animation_controller.cpp85 StepperAnimation::StepperAnimation(const WeakPtr<PipelineContext>& context, double start, double en… in StepperAnimation() function in OHOS::Ace::StepperAnimation
99 void StepperAnimation::Play() in Play()
109 void StepperAnimation::Stop() in Stop()
125 …fromIndexOpacityAnimation_ = AceType::MakeRefPtr<StepperAnimation>(context_, MAX_OPACITY, MIN_OPAC… in CreateOpacityAnimation()
130 …toIndexOpacityAnimation_ = AceType::MakeRefPtr<StepperAnimation>(context_, MIN_OPACITY, MAX_OPACIT… in CreateOpacityAnimation()
139 fromIndexTranslateAnimationNext_ = AceType::MakeRefPtr<StepperAnimation>(context_, RATIO_ZERO, in CreateTranslateAnimation()
144 toIndexTranslateAnimationNext_ = AceType::MakeRefPtr<StepperAnimation>(context_, RATIO_POSITIVE, in CreateTranslateAnimation()
149 fromIndexTranslateAnimationBack_ = AceType::MakeRefPtr<StepperAnimation>(context_, RATIO_ZERO, in CreateTranslateAnimation()
154 toIndexTranslateAnimationBack_ = AceType::MakeRefPtr<StepperAnimation>(context_, RATIO_NEGATIVE, in CreateTranslateAnimation()