feat:Android implement FillMode

This commit is contained in:
pengfei.zhou
2019-12-02 16:18:13 +08:00
parent 359e974424
commit 7f278073f3
4 changed files with 131 additions and 14 deletions

View File

@@ -45,15 +45,15 @@ export enum FillMode {
/**
* The receiver remains visible in its final state when the animation is completed.
*/
Forward = 1,
Forward = 0x1,
/**
* The receiver clamps values before zero to zero when the animation is completed.
*/
Backward = 2,
Backward = 0x2,
/**
* The receiver clamps values at both ends of the objects time space
*/
Both = 3,
Both = 0x3,
}
abstract class Animation implements IAnimation {