BaiduMap_IOSSDK_v6.6.2_Docs 6.6.2
载入中...
搜索中...
未找到
BMKAnimation.h
浏览该文件的文档.
1//
2// BMKAnimation.h
3// MapComponent
4//
5// Created by zhaoxiangru on 2021/11/29.
6// Copyright © 2021 Baidu. All rights reserved.
7//
8
9#import <Foundation/Foundation.h>
24
25NS_ASSUME_NONNULL_BEGIN
27@interface BMKAnimation : NSObject
29@property (nonatomic, assign) int duration;
31@property (nonatomic, assign) BMKAnimationType type;
32@end
33
34NS_ASSUME_NONNULL_END
BMKAnimationType
Definition BMKAnimation.h:10
@ InOutElastic
Definition BMKAnimation.h:19
@ InOutQuart
Definition BMKAnimation.h:14
@ OutInSine
Definition BMKAnimation.h:16
@ CosineCurve
Definition BMKAnimation.h:22
@ OutInQuint
Definition BMKAnimation.h:15
@ OutInBack
Definition BMKAnimation.h:20
@ InCurve
Definition BMKAnimation.h:22
@ InOutSine
Definition BMKAnimation.h:16
@ Linear
Definition BMKAnimation.h:11
@ InBounce
Definition BMKAnimation.h:21
@ InOutCirc
Definition BMKAnimation.h:18
@ InCirc
Definition BMKAnimation.h:18
@ OutBounce
Definition BMKAnimation.h:21
@ OutElastic
Definition BMKAnimation.h:19
@ OutInExpo
Definition BMKAnimation.h:17
@ InQuint
Definition BMKAnimation.h:15
@ SineCurve
Definition BMKAnimation.h:22
@ OutExpo
Definition BMKAnimation.h:17
@ OutSine
Definition BMKAnimation.h:16
@ OutQuart
Definition BMKAnimation.h:14
@ OutInQuart
Definition BMKAnimation.h:14
@ OutCurve
Definition BMKAnimation.h:22
@ OutQuint
Definition BMKAnimation.h:15
@ InOutBack
Definition BMKAnimation.h:20
@ OutInElastic
Definition BMKAnimation.h:19
@ InOutQuint
Definition BMKAnimation.h:15
@ InOutQuad
Definition BMKAnimation.h:12
@ InQuad
线性
Definition BMKAnimation.h:12
@ OutInCirc
Definition BMKAnimation.h:18
@ InOutExpo
Definition BMKAnimation.h:17
@ OutInCubic
Definition BMKAnimation.h:13
@ OutInBounce
Definition BMKAnimation.h:21
@ InOutBounce
Definition BMKAnimation.h:21
@ InQuart
Definition BMKAnimation.h:14
@ OutInQuad
Definition BMKAnimation.h:12
@ InElastic
Definition BMKAnimation.h:19
@ OutQuad
Definition BMKAnimation.h:12
@ InBack
Definition BMKAnimation.h:20
@ InOutCubic
Definition BMKAnimation.h:13
@ OutCirc
Definition BMKAnimation.h:18
@ InExpo
Definition BMKAnimation.h:17
@ InSine
Definition BMKAnimation.h:16
@ OutCubic
Definition BMKAnimation.h:13
@ InCubic
Definition BMKAnimation.h:13
@ OutBack
Definition BMKAnimation.h:20
动画类
Definition BMKAnimation.h:28
int duration
设置动画总时长,默认为0ms,
Definition BMKAnimation.h:29
BMKAnimationType type
动画缓动函数类型,默认0:线性
Definition BMKAnimation.h:31