Skip to content

🐣 🎬 πŸ“± Cordova plugin to show Lottie animations as the splash screen with Airbnb's Lottie wrapper

License

Notifications You must be signed in to change notification settings

alssl-ross/cordova-plugin-lottie-splashscreen

Β 
Β 

Repository files navigation

cordova-plugin-lottie-splashscreen

Build Status

Dependency Status devDependency Status Known Vulnerabilities

Commitizen friendly Dependabot Status License npm

Cordova plugin to show bodymovin/Lottie animations as the splash screen with Airbnb's Lottie wrapper

Supported platforms

  • iOS (8+)
  • Android

Planned platforms

  • macOS

Prerequisites/Warnings

iOS

You need to have CocoaPods installed because lottie-ios is fetched from there.
$ sudo gem install cocoapods

Android

AndroidX support is required for lottie-android >= 2.8.0. It's currently pinned to v2.7.0 since Cordova has no support for it. Once Cordova is ready for AndroidX the dependency can be upgraded.

Installation

from npm (recommended)

$ cordova plugin add cordova-plugin-cordova-plugin-lottie-splashscreen

from git (unstable)

$ cordova plugin add https://github.com/timbru31/cordova-plugin-cordova-plugin-lottie-splashscreen.git

Usage

This Cordova plugin is meant as a replacement for the stock cordova-plugin-splashscreen.

Methods

  • lottie.splashscreen.hide
  • lottie.splashscreen.show
lottie.splashscreen.hide

This methods hides the current active Lottie splashscreen and destroys the views.

lottie.splashscreen.hide()
lottie.splashscreen.show

This method shows a Lottie splash screen. If no arguments are given, it defaults to the config.xml values, however you can pass (new) options here to change the behavior on runtime. (For easier reading the TypeScript notation is used)

lottie.splashscreen.show(location?: string, remote?: boolean, width?: number, height?: number)

Preferences

  • LottieRemoteEnabled (Boolean, default false). Toggles Lottie's remote mode which allows files to be downloaded/displayed from URLs. Example:
    <preference name="LottieRemoteEnabled" value="true" />
  • LottieAnimationLocation (String, default ""). Location of the Lottie JSON file that should be loaded. Can either be a URL (if LottieRemoteEnabled is true) or a local JSON file (e.g. www/lottie/error.json).
    <preference name="LottieAnimationLocation" value="https://assets.lottiefiles.com/datafiles/99nA1a7mkSF3Oz8/data.json" />
  • LottieCancelOnTap (Boolean, default false). Immediately cancels the Lottie animation when the user taps on the screen.
    <preference name="LottieCancelOnTap" value="true" />
  • LottieHideTimeout (Double, default 0). Duration in seconds after which the Lottie animation should be hidden.
    <preference name="LottieHideTimeout" value="10" />
  • LottieBackgroundColor (String, default #ffffff). Background color of the overlay. Can be used with alpha values, too. (For more information see the 8 digits notation of RGB notation)
    <preference name="LottieBackgroundColor" value="#fff000a3" />
  • LottieWidth (Integer, default 200). Width of the container that's rendering the Lottie animation
    <preference name="LottieWidth" value="750" />
  • LottieHeight (Integer, default 200). Height of the container that's rendering the Lottie animation
    <preference name="LottieHeight" value="750" />
  • LottieLoopAnimation (Boolean, default false). Loops the animation
    <preference name="LottieLoopAnimation" value="true" />
  • LottieAutoHideSplashScreen (Boolean, default false). Hides the Lottie splash screen when the pageDidLoad event fired
    <preference name="LottieAutoHideSplashScreen" value="true" />

Built by (c) Tim Brust and contributors. Released under the MIT license.

About

🐣 🎬 πŸ“± Cordova plugin to show Lottie animations as the splash screen with Airbnb's Lottie wrapper

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Swift 54.0%
  • Kotlin 33.6%
  • JavaScript 6.8%
  • TypeScript 3.0%
  • HCL 1.5%
  • Shell 0.7%
  • Objective-C 0.4%