+
+ Bouncy Ball - Comparing Web Animation Techniques - Lottie / Bodymovin
+
+
+
+
+
+
+
+
diff --git a/examples/lottie/readme.md b/examples/lottie/readme.md
new file mode 100644
index 0000000..d2444ab
--- /dev/null
+++ b/examples/lottie/readme.md
@@ -0,0 +1,16 @@
+# Lottie / Bodymovin
+
+Lottie is suite of libraries that allows you to render After Effects animations across various web and mobile platforms. These animations can be designed in [Adobe After Effects](https://www.adobe.com/products/aftereffects.html), exported as JSON files (using an After Effects extension called [Bodymovin](https://www.adobeexchange.com/creativecloud.details.12557.html)), and rendered with Lottie, which has libraries available for Android, iOS, web, and React Native.
+
+## Project Links
+- [Documentation Site](https://airbnb.design/lottie/)
+- [Lottie iOS](https://github.com/airbnb/lottie-ios)
+- [Lottie Android](https://github.com/airbnb/lottie-android)
+- [Lottie React Native](https://github.com/airbnb/lottie-react-native)
+- [Lottie Web](https://github.com/airbnb/lottie-web)
+- [Bodymovin Plugin](https://www.adobeexchange.com/creativecloud.details.12557.html)
+
+## Resources
+- [Introducing Lottie (article)](https://airbnb.design/introducing-lottie/)
+- [Codepen Examples using Lottie / Bodymovin](https://codepen.io/collection/nVYWZR/)
+- [Lottie / Bodymovin Github Documentation Wiki](https://github.com/airbnb/lottie-web/wiki)
diff --git a/examples/lottie/script.js b/examples/lottie/script.js
new file mode 100644
index 0000000..8a0c4c1
--- /dev/null
+++ b/examples/lottie/script.js
@@ -0,0 +1,9 @@
+// You can see the data that was exported from After Effects at
+// https://sparkbox.github.io/bouncy-ball/examples/lottie/data.json
+bodymovin.loadAnimation({
+ container: document.querySelector('ball'),
+ renderer: 'svg',
+ loop: true,
+ autoplay: true,
+ path: 'data.json'
+});
diff --git a/index.html b/index.html
index 3f54ee7..fdaf14c 100644
--- a/index.html
+++ b/index.html
@@ -1,5 +1,6 @@
+
Bouncy Ball - Compare Web Animation Techniques
@@ -8,7 +9,8 @@
-
+
@@ -16,11 +18,15 @@
+
Bouncy Ball
Comparing web animation techniques by showing how to bounce a ball with each one.