Searched refs:scaleAnimation (Results 1 – 7 of 7) sorted by relevance
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/list/ |
H A D | watch_interactive_effect.cpp | 33 …RefPtr<KeyframeAnimation<double>> scaleAnimation = AceType::MakeRefPtr<KeyframeAnimation<double>>(… in BuildClickAnimation() local 35 BuildClickScaleAnimation(scaleAnimation); in BuildClickAnimation() 39 controller_->AddInterpolator(scaleAnimation); in BuildClickAnimation() 46 …nteractiveEffect::BuildClickScaleAnimation(const RefPtr<KeyframeAnimation<double>>& scaleAnimation) in BuildClickScaleAnimation() argument 54 scaleAnimation->AddKeyframe(scaleFrameStart); in BuildClickScaleAnimation() 55 scaleAnimation->AddKeyframe(scaleFrameMid); in BuildClickScaleAnimation() 56 scaleAnimation->AddKeyframe(scaleFrameEnd); in BuildClickScaleAnimation() 57 scaleAnimation->AddListener([weakEffect = AceType::WeakClaim(this)](double value) { in BuildClickScaleAnimation()
|
H A D | tv_interactive_effect.cpp | 31 auto scaleAnimation = AceType::MakeRefPtr<KeyframeAnimation<double>>(); in BuildStateAnimation() local 32 scaleAnimation->AddKeyframe(scaleFrameStart); in BuildStateAnimation() 33 scaleAnimation->AddKeyframe(scaleFrameEnd); in BuildStateAnimation() 34 scaleAnimation->AddListener([weakEffect = AceType::WeakClaim(this)](double value) { in BuildStateAnimation() 44 controller_->AddInterpolator(scaleAnimation); in BuildStateAnimation()
|
H A D | watch_interactive_effect.h | 47 void BuildClickScaleAnimation(const RefPtr<KeyframeAnimation<double>>& scaleAnimation);
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/common/properties/ |
H A D | page_transition_option.cpp | 191 scaleAnimation->AddKeyframe(scaleKeyframe1); in CreateTransitionInContentOption() 192 scaleAnimation->AddKeyframe(scaleKeyframe2); in CreateTransitionInContentOption() 193 scaleAnimation->AddKeyframe(scaleKeyframe3); in CreateTransitionInContentOption() 224 scaleAnimation->AddKeyframe(scaleKeyframe1); in CreateTransitionInBackgroundOption() 225 scaleAnimation->AddKeyframe(scaleKeyframe2); in CreateTransitionInBackgroundOption() 226 scaleAnimation->AddKeyframe(scaleKeyframe3); in CreateTransitionInBackgroundOption() 227 scaleAnimation->AddKeyframe(scaleKeyframe4); in CreateTransitionInBackgroundOption() 273 scaleAnimation->AddKeyframe(scaleKeyframe1); in CreatTransitionOutOption() 274 scaleAnimation->AddKeyframe(scaleKeyframe2); in CreatTransitionOutOption() 275 scaleAnimation->AddKeyframe(scaleKeyframe3); in CreatTransitionOutOption() [all …]
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/tween/ |
H A D | tween_element.cpp | 51 void SetScaleProperties(const RefPtr<Animation<float>>& scaleAnimation, TweenOption& option) in SetScaleProperties() argument 54 scaleAnimation->SetCurve(option.GetCurve()); in SetScaleProperties() 56 if (!scaleAnimation->HasInitValue()) { in SetScaleProperties() 57 scaleAnimation->SetInitValue(1.0f); in SetScaleProperties() 244 [](const RefPtr<Animation<float>>& scaleAnimation, WeakPtr<RenderTransform>& weakRender, 246 SetScaleProperties(scaleAnimation, option); in __anonf1ba2b2b0202() 247 scaleAnimation->AddListener([weakRender, scaleAnimation](float value) { in __anonf1ba2b2b0202() 672 auto& scaleAnimation = iterScaleAnimation->second; in CreateScaleAnimation() local 673 … transformFloatAnimationAddMap_[scaleAnimationIter].value(scaleAnimation, weakRender, option); in CreateScaleAnimation()
|
/ohos5.0/docs/zh-cn/application-dev/performance/ |
H A D | application-performance-optimization-guidance.md | 960 @State scaleAnimation: ScaleAnimationParams = new ScaleAnimationParams(); 979 x: this.scaleAnimation.scaleX, 980 y: this.scaleAnimation.scaleY, 981 centerX: this.scaleAnimation.centerX, 982 centerY: this.scaleAnimation.centerY 1002 this.scaleAnimation.scaleX = 3; 1003 this.scaleAnimation.scaleY = 3; 1004 this.scaleAnimation.centerX = 20; 1005 this.scaleAnimation.centerY = 20;
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/animation/ |
H A D | card_transition_controller.cpp | 179 …auto scaleAnimation = AceType::MakeRefPtr<CurveAnimation<double>>(startScale, endScale, Curves::FR… in CreateCardScaleAnimation() local 180 scaleAnimation->AddListener([weakTransform](double value) { in CreateCardScaleAnimation() 186 controller_->AddInterpolator(scaleAnimation); in CreateCardScaleAnimation()
|