For making animations. Making animations in HTML5 without a WYSIWYG application, to me kinda seems impossible 😐Using Fash (??) is out of the question for what exactly?
That looks really friggin' cool.It's using the GSAP framework. I've never tried this.
It's using the GSAP framework. I've never tried this.
s = [].concat([].slice.call(document.getElementsByClassName("lottie")[].slice.call(document.getElementsByClassName("bodymovin")))
Lottie is a library for Android, iOS, Web, and Windows that parses Adobe After Effects animations exported as JSON with Bodymovin and renders them natively on mobile and on the web!
Plenty of hits when searching for "gsap" in the code so they're both in the dependency tree somewhere, although I looked for any dependency of Lottie on GSAP and vise-versa but couldn't find it.I'm not seeing any evidence of that in the source code.
Instead, what they are doing is animating in Adobe After Effects and converting it to the web using Lottie.
For example, the comma animation javascript file has text like "ADBE Vector Graphic - Stroke" and "ADBE Vector Shape - Group", which means they are using an Adobe product.
Then in the main javascript file there is code like:
JavaScript:s = [].concat([].slice.call(document.getElementsByClassName("lottie")[].slice.call(document.getElementsByClassName("bodymovin")))
Which matches the description of Lottie:
My mistake, you are correct.Plenty of hits when searching for "gsap" in the code so they're both in the dependency tree somewhere, although I looked for any dependency of Lottie on GSAP and vise-versa but couldn't find it.
HTML, Javascript and CSS.For making animations. Making animations in HTML5 without a WYSIWYG application, to me kinda seems impossible 😐