• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1Animation Player
2================
3
4Skia now offers a performant, secure native player for JSON animations derived
5from the Bodymovin plugin for After Effects. It can be used on any platform
6where you are using Skia, including Android & iOS.
7
8The player aims to build upon the Lottie player widely used for animations
9today, improving on the performance, feature set, and platform cohesiveness for
10our clients. We are big fans of the Bodymovin format and where possible,
11contributing advancements back to Bodymovin/Lottie.
12
13<br>
14
15Sample JSON animations
16----------------------
17
18Here are some test samples rendering with Skia's animation player:
19
20<a href="https://skottie.skia.org/e6741dda67629da1f80c254dad3df865">
21  <skottie-inline-sk src="https://skottie.skia.org/_/j/e6741dda67629da1f80c254dad3df865" width=200 height=200></skottie-inline-sk>
22</a>
23<a href="https://skottie.skia.org/ffea72cf6be48fa061671c124ed7789c">
24  <skottie-inline-sk src="https://skottie.skia.org/_/j/ffea72cf6be48fa061671c124ed7789c" width=200 height=200></skottie-inline-sk>
25</a>
26<a href="https://skottie.skia.org/00e850cdbed7304985eaefe98a4e8a9c">
27  <skottie-inline-sk src="https://skottie.skia.org/_/j/00e850cdbed7304985eaefe98a4e8a9c" width=200 height=200></skottie-inline-sk>
28</a>
29<a href="https://skottie.skia.org/e1aca009d5ebec9bd122b87b018bb673">
30  <skottie-inline-sk src="https://skottie.skia.org/_/j/e1aca009d5ebec9bd122b87b018bb673" width=200 height=200></skottie-inline-sk>
31</a>
32<a href="https://skottie.skia.org/821fd79dd7437b97ba891e7a00970a06">
33  <skottie-inline-sk src="https://skottie.skia.org/_/j/821fd79dd7437b97ba891e7a00970a06" width=200 height=200></skottie-inline-sk>
34</a>
35<a href="https://skottie.skia.org/ad63f250084685c96edd9b52ae2f436b">
36  <skottie-inline-sk src="https://skottie.skia.org/_/j/ad63f250084685c96edd9b52ae2f436b" width=200 height=200></skottie-inline-sk>
37</a>
38<a href="https://skottie.skia.org/40f78ddc751c16348a08e1d61d3e78b1">
39  <skottie-inline-sk src="https://skottie.skia.org/_/j/40f78ddc751c16348a08e1d61d3e78b1" width=200 height=200></skottie-inline-sk>
40</a>
41<a href="https://skottie.skia.org/fc42db7c75741437b5cb0e90b3febc65">
42  <skottie-inline-sk src="https://skottie.skia.org/_/j/fc42db7c75741437b5cb0e90b3febc65" width=200 height=200></skottie-inline-sk>
43</a>
44
45*Sample animations courtesy of the lottiefiles.com community
46
47<br>
48
49Test server
50-----------
51
52Test your Lottie files in our player at https://skottie.skia.org
53
54<br>
55
56The code
57--------
58Skia's animation code entry point can be found here on
59[Googlesource](https://skia.googlesource.com/skia/+/master/modules/skottie/include/Skottie.h)
60and [GitHub](https://github.com/google/skia/blob/master/modules/skottie/include/Skottie.h).
61The code is part of Skia's library but can also be made available as a separate
62package.
63
64<br>
65
66Embedding examples
67------------------
68Sample C code for using the Skottie native player can be found
69[here](https://github.com/google/skia/blob/master/modules/skottie/src/SkottieTool.cpp).
70
71Android app code for inspiration can be found
72[here](https://github.com/google/skia/tree/master/platform_tools/android/apps/skottie).
73
74Example code embedding Skottie into our Viewer app is
75[here](https://github.com/google/skia/blob/master/tools/viewer/SkottieSlide.cpp).
76
77The Viewer or Skottie Android apps can be built following [these](https://skia.org/user/sample/viewer)
78instructions.
79