Classes

The following classes are available globally.

  • Actions for a parallax view

    See more

    Declaration

    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 more

    Declaration

    Swift

    open class ParallaxMotionEffect : UIMotionEffect
  • An object that provides default implementation of the parallax effect for the UICollectionViewCell. Most of the time you will subclass this class as you would with UICollectionViewCell to provide custom content. If you will override init method it is important to provide default setup for the unfocused state of the view e.g. parallaxViewActions.setupUnfocusedState?(self)

    See more

    Declaration

    Swift

    open class ParallaxCollectionViewCell : UICollectionViewCell, ParallaxableView
  • An object that provides default implementation of the parallax effect for the UIView. If you will override init method it is important to provide default setup for the unfocused state of the view e.g. parallaxViewActions.setupUnfocusedState?(self)

    See more

    Declaration

    Swift

    open class ParallaxView : UIView, ParallaxableView