Classes
The following classes are available globally.
-
Actions for a parallax view
See moreDeclaration
Swift
open class ParallaxViewActions<T> where T : UIView, T : ParallaxableView
-
A UIMotionEffect subclass that makes parallax motion effect by applying custom transformation. Allows to customize the motion effect.
See moreDeclaration
Swift
open class ParallaxMotionEffect : UIMotionEffect
-
An object that provides default implementation of the parallax effect for the
See moreUICollectionViewCell
. Most of the time you will subclass this class as you would withUICollectionViewCell
to provide custom content. If you will overrideinit
method it is important to provide default setup for the unfocused state of the view e.g.parallaxViewActions.setupUnfocusedState?(self)
Declaration
Swift
open class ParallaxCollectionViewCell : UICollectionViewCell, ParallaxableView
-
An object that provides default implementation of the parallax effect for the
See moreUIView
. If you will overrideinit
method it is important to provide default setup for the unfocused state of the view e.g.parallaxViewActions.setupUnfocusedState?(self)
Declaration
Swift
open class ParallaxView : UIView, ParallaxableView