2020-06-03 14:53:32 +08:00
|
|
|
import { Group, Panel, gravity, Color, AnimationSet, vlayout, layoutConfig, modal, stack, hlayout, text, TranslationAnimation, ScaleAnimation, RotationAnimation, TimingFunction, RotationXAnimation, RotationYAnimation, image } from "doric";
|
2019-12-04 14:07:14 +08:00
|
|
|
import { title, colors, box } from "./utils";
|
|
|
|
|
|
|
|
function thisLabel(str: string) {
|
|
|
|
return text({
|
|
|
|
text: str,
|
|
|
|
width: 80,
|
|
|
|
height: 30,
|
|
|
|
backgroundColor: colors[0],
|
|
|
|
textSize: 10,
|
|
|
|
textColor: Color.WHITE,
|
2019-12-14 16:32:04 +08:00
|
|
|
layoutConfig: layoutConfig().just(),
|
2019-12-04 14:07:14 +08:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
@Entry
|
|
|
|
class AnimationDemo extends Panel {
|
|
|
|
build(rootView: Group): void {
|
|
|
|
const view = box(2)
|
2020-06-03 14:53:32 +08:00
|
|
|
const view2 = image({
|
|
|
|
imageUrl: "https://pic3.zhimg.com/v2-5847d0813bd0deba333fcbe52435e83e_b.jpg"
|
|
|
|
})
|
2019-12-04 14:07:14 +08:00
|
|
|
view.onClick = () => {
|
|
|
|
modal(context).toast('Clicked')
|
|
|
|
}
|
2020-01-06 10:43:18 +08:00
|
|
|
vlayout(
|
|
|
|
[
|
|
|
|
title("Complicated Animation"),
|
|
|
|
vlayout(
|
|
|
|
[
|
|
|
|
hlayout(
|
|
|
|
[
|
|
|
|
thisLabel('reset').apply({
|
|
|
|
onClick: () => {
|
|
|
|
const rotation = new RotationAnimation
|
|
|
|
rotation.duration = 1000
|
|
|
|
rotation.fromRotation = view.rotation || 0
|
|
|
|
rotation.toRotation = 0
|
|
|
|
const translation = new TranslationAnimation
|
|
|
|
translation.duration = 1000
|
|
|
|
translation.fromTranslationX = view.translationX || 0
|
|
|
|
translation.toTranslationX = 0
|
|
|
|
translation.fromTranslationY = view.translationY || 0
|
|
|
|
translation.toTranslationY = 0
|
|
|
|
const scale = new ScaleAnimation
|
|
|
|
scale.duration = 1000
|
|
|
|
scale.fromScaleX = view.scaleX || 1
|
|
|
|
scale.toScaleX = 1
|
|
|
|
scale.fromScaleY = view.scaleY || 1
|
|
|
|
scale.toScaleY = 1
|
|
|
|
const animationSet = new AnimationSet
|
|
|
|
animationSet.addAnimation(rotation)
|
|
|
|
animationSet.addAnimation(translation)
|
|
|
|
animationSet.addAnimation(scale)
|
|
|
|
view.doAnimation(context, animationSet).then(() => {
|
|
|
|
modal(context).toast('Resetd')
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}),
|
|
|
|
],
|
|
|
|
{ space: 10 }
|
|
|
|
),
|
|
|
|
hlayout(
|
|
|
|
[
|
|
|
|
thisLabel('TranslationX').apply({
|
|
|
|
onClick: () => {
|
|
|
|
const animation = new TranslationAnimation
|
|
|
|
animation.duration = 1000
|
|
|
|
animation.fromTranslationX = view.translationX || 0
|
|
|
|
animation.toTranslationX = animation.fromTranslationX + 100
|
|
|
|
animation.fromTranslationY = view.translationY || 0
|
|
|
|
animation.toTranslationY = view.translationY || 0
|
|
|
|
view.doAnimation(context, animation)
|
|
|
|
}
|
|
|
|
}),
|
|
|
|
thisLabel('TranslationY').apply({
|
|
|
|
onClick: () => {
|
|
|
|
const animation = new TranslationAnimation
|
|
|
|
animation.duration = 1000
|
|
|
|
animation.fromTranslationX = view.translationX || 0
|
|
|
|
animation.toTranslationX = view.translationX || 0
|
|
|
|
animation.fromTranslationY = view.translationY || 0
|
|
|
|
animation.toTranslationY = animation.fromTranslationY + 100
|
|
|
|
view.doAnimation(context, animation)
|
|
|
|
}
|
|
|
|
}),
|
|
|
|
thisLabel('ScaleX').apply({
|
|
|
|
onClick: () => {
|
|
|
|
const animation = new ScaleAnimation
|
|
|
|
animation.duration = 1000
|
|
|
|
animation.fromScaleX = view.scaleX || 1
|
|
|
|
animation.toScaleX = animation.fromScaleX + 1
|
|
|
|
view.doAnimation(context, animation)
|
|
|
|
}
|
|
|
|
}),
|
|
|
|
thisLabel('ScaleY').apply({
|
|
|
|
onClick: () => {
|
|
|
|
const animation = new ScaleAnimation
|
|
|
|
animation.duration = 1000
|
|
|
|
animation.fromScaleY = view.scaleY || 1
|
|
|
|
animation.toScaleY = animation.fromScaleY + 1
|
|
|
|
view.doAnimation(context, animation)
|
|
|
|
}
|
|
|
|
}),
|
|
|
|
thisLabel('rotation').apply({
|
|
|
|
onClick: () => {
|
|
|
|
const animation = new RotationAnimation
|
|
|
|
animation.duration = 1000
|
|
|
|
animation.fromRotation = view.rotation || 0
|
|
|
|
animation.toRotation = animation.fromRotation + 0.25
|
|
|
|
view.doAnimation(context, animation)
|
|
|
|
}
|
|
|
|
}),
|
|
|
|
],
|
|
|
|
{ space: 10 }
|
|
|
|
),
|
|
|
|
hlayout(
|
|
|
|
[
|
|
|
|
thisLabel('group').apply({
|
|
|
|
onClick: () => {
|
|
|
|
const rotation = new RotationAnimation
|
|
|
|
rotation.duration = 1000
|
|
|
|
rotation.fromRotation = 0
|
|
|
|
rotation.toRotation = 4
|
|
|
|
const translation = new TranslationAnimation
|
|
|
|
translation.duration = 1000
|
|
|
|
translation.fromTranslationX = view.translationX || 0
|
|
|
|
translation.toTranslationX = 100
|
|
|
|
const animationSet = new AnimationSet
|
|
|
|
animationSet.addAnimation(rotation)
|
|
|
|
animationSet.addAnimation(translation)
|
|
|
|
view.doAnimation(context, animationSet)
|
|
|
|
}
|
|
|
|
}),
|
2020-06-03 14:53:32 +08:00
|
|
|
thisLabel('rotationX').apply({
|
|
|
|
onClick: () => {
|
|
|
|
const rotation = new RotationXAnimation
|
|
|
|
rotation.duration = 5000
|
|
|
|
rotation.fromRotation = 0
|
|
|
|
rotation.toRotation = 0.5
|
|
|
|
const animationSet = new AnimationSet
|
|
|
|
animationSet.addAnimation(rotation)
|
|
|
|
view2.doAnimation(context, animationSet)
|
|
|
|
}
|
|
|
|
}),
|
|
|
|
thisLabel('rotationY').apply({
|
|
|
|
onClick: () => {
|
|
|
|
const rotation = new RotationYAnimation
|
|
|
|
rotation.duration = 5000
|
|
|
|
rotation.fromRotation = 0
|
|
|
|
rotation.toRotation = 4
|
|
|
|
const animationSet = new AnimationSet
|
|
|
|
animationSet.addAnimation(rotation)
|
|
|
|
view2.doAnimation(context, animationSet)
|
|
|
|
}
|
|
|
|
}),
|
2020-01-06 10:43:18 +08:00
|
|
|
],
|
|
|
|
{ space: 10 }
|
|
|
|
),
|
|
|
|
hlayout(
|
|
|
|
[
|
|
|
|
thisLabel('Default').apply({
|
|
|
|
onClick: () => {
|
|
|
|
const translation = new TranslationAnimation
|
|
|
|
translation.duration = 3000
|
|
|
|
translation.fromTranslationX = 0
|
|
|
|
translation.toTranslationX = 300
|
|
|
|
translation.timingFunction = TimingFunction.Default
|
|
|
|
view.doAnimation(context, translation)
|
|
|
|
}
|
|
|
|
}),
|
|
|
|
thisLabel('Linear').apply({
|
|
|
|
onClick: () => {
|
|
|
|
const translation = new TranslationAnimation
|
|
|
|
translation.duration = 3000
|
|
|
|
translation.fromTranslationX = 0
|
|
|
|
translation.toTranslationX = 300
|
|
|
|
translation.timingFunction = TimingFunction.Linear
|
|
|
|
view.doAnimation(context, translation)
|
|
|
|
}
|
|
|
|
}),
|
|
|
|
thisLabel('EaseIn').apply({
|
|
|
|
onClick: () => {
|
|
|
|
const translation = new TranslationAnimation
|
|
|
|
translation.duration = 3000
|
|
|
|
translation.fromTranslationX = 0
|
|
|
|
translation.toTranslationX = 300
|
|
|
|
translation.timingFunction = TimingFunction.EaseIn
|
|
|
|
view.doAnimation(context, translation)
|
|
|
|
}
|
|
|
|
}),
|
|
|
|
thisLabel('EaseOut').apply({
|
|
|
|
onClick: () => {
|
|
|
|
const translation = new TranslationAnimation
|
|
|
|
translation.duration = 3000
|
|
|
|
translation.fromTranslationX = 0
|
|
|
|
translation.toTranslationX = 300
|
|
|
|
translation.timingFunction = TimingFunction.EaseOut
|
|
|
|
view.doAnimation(context, translation)
|
|
|
|
}
|
|
|
|
}),
|
|
|
|
thisLabel('EaseInEaseOut').apply({
|
|
|
|
onClick: () => {
|
|
|
|
const translation = new TranslationAnimation
|
|
|
|
translation.duration = 3000
|
|
|
|
translation.fromTranslationX = 0
|
|
|
|
translation.toTranslationX = 300
|
|
|
|
translation.timingFunction = TimingFunction.EaseInEaseOut
|
|
|
|
view.doAnimation(context, translation)
|
|
|
|
}
|
|
|
|
}),
|
|
|
|
],
|
|
|
|
{ space: 10 }
|
|
|
|
),
|
|
|
|
],
|
|
|
|
{ space: 10 }
|
|
|
|
),
|
|
|
|
stack(
|
|
|
|
[
|
|
|
|
view.also(v => {
|
|
|
|
v.x = 20
|
|
|
|
v.y = 0
|
|
|
|
v.width = 30
|
|
|
|
v.left = 15
|
2019-12-04 14:07:14 +08:00
|
|
|
}),
|
2020-01-06 10:43:18 +08:00
|
|
|
view2.also(v => {
|
|
|
|
v.x = v.y = 20
|
|
|
|
v.y = 40
|
2020-06-03 14:53:32 +08:00
|
|
|
//v.scaleX = 1.5
|
2020-01-06 10:43:18 +08:00
|
|
|
})
|
|
|
|
],
|
|
|
|
{
|
|
|
|
layoutConfig: layoutConfig().most(),
|
|
|
|
backgroundColor: colors[1].alpha(0.3 * 255),
|
|
|
|
}
|
|
|
|
),
|
|
|
|
],
|
|
|
|
{
|
2019-12-14 16:32:04 +08:00
|
|
|
layoutConfig: layoutConfig().most(),
|
2020-01-06 10:43:18 +08:00
|
|
|
gravity: gravity().center(),
|
|
|
|
space: 10,
|
|
|
|
}
|
|
|
|
).in(rootView)
|
2019-12-04 14:07:14 +08:00
|
|
|
}
|
|
|
|
}
|