GADMBannerAnimationType
enum GADMBannerAnimationType : NSInteger {}
These are the types of animation we employ for transitions between two mediated ads.
-
< No animation.
Declaration
Swift
case none = 0
Objective-C
GADMBannerAnimationTypeNone = 0
-
< Flip from left.
Declaration
Swift
case flipFromLeft = 1
Objective-C
GADMBannerAnimationTypeFlipFromLeft = 1
-
< Flip from right.
Declaration
Swift
case flipFromRight = 2
Objective-C
GADMBannerAnimationTypeFlipFromRight = 2
-
< Curl up.
Declaration
Swift
case curlUp = 3
Objective-C
GADMBannerAnimationTypeCurlUp = 3
-
< Curl down.
Declaration
Swift
case curlDown = 4
Objective-C
GADMBannerAnimationTypeCurlDown = 4
-
< Slide from left.
Declaration
Swift
case slideFromLeft = 5
Objective-C
GADMBannerAnimationTypeSlideFromLeft = 5
-
< Slide from right.
Declaration
Swift
case slideFromRight = 6
Objective-C
GADMBannerAnimationTypeSlideFromRight = 6
-
< Fade in.
Declaration
Swift
case fadeIn = 7
Objective-C
GADMBannerAnimationTypeFadeIn = 7
-
< Random animation.
Declaration
Swift
case random = 8
Objective-C
GADMBannerAnimationTypeRandom = 8