CoolFace
Apppublic

awacke1/AnimationAI

sourceHugging Facemitupdated 2y agoView on Hugging Face
5likes
backup1.app.py34 linesDownload Raw Back to root
1import requests2import streamlit as st3from streamlit_lottie import st_lottie4 5def load_lottie_url(url: str):6    r = requests.get(url)7    if r.status_code != 200:8        return None9    return r.json()10    11def ShowAnimation(name, URL):12    anim=load_lottie_url(URL)13    st_lottie(anim, key = name)14    15st.markdown('# Animations: https://lottiefiles.com/recent') 16st.markdown("# Animate with JSON, SVG, Adobe XD, Figma, and deploy to web, mobile as tiny animation files ")17 18# to Use Lottie in HTML (gradio or HTML5) use the code below in HTML19# <script src="https://unpkg.com/@lottiefiles/lottie-player@latest/dist/lottie-player.js"></script>20# <lottie-player src="<URL HERE>" background="transparent"  speed="1"  style="width: 300px; height: 300px;" loop controls autoplay></lottie-player>21 22ShowAnimation("Badge1","https://assets5.lottiefiles.com/packages/lf20_wtohqzml.json")23ShowAnimation("Badge2","https://assets5.lottiefiles.com/packages/lf20_i4zw2ddg.json")24ShowAnimation("Badge3","https://assets5.lottiefiles.com/private_files/lf30_jfhmdmk5.json")25ShowAnimation("Graph","https://assets6.lottiefiles.com/packages/lf20_4gqhiayj.json")26ShowAnimation("PhoneBot","https://assets9.lottiefiles.com/packages/lf20_zrqthn6o.json")27ShowAnimation("SupportBot","https://assets5.lottiefiles.com/private_files/lf30_cmd8kh2q.json")28ShowAnimation("ChatBot","https://assets8.lottiefiles.com/packages/lf20_j1oeaifz.json")29ShowAnimation("IntelligentMachine","https://assets8.lottiefiles.com/packages/lf20_edouagsj.json")30ShowAnimation("GearAI","https://assets10.lottiefiles.com/packages/lf20_3jkp7dqt.json")31ShowAnimation("ContextGraph","https://assets10.lottiefiles.com/private_files/lf30_vwC61X.json")32ShowAnimation("Yggdrasil","https://assets4.lottiefiles.com/packages/lf20_8q1bhU.json")33ShowAnimation("Studying","https://assets9.lottiefiles.com/packages/lf20_6ft9bypa.json")34