Spaces:
Sleeping
Sleeping
File size: 415 Bytes
04c268e |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
import gradio as gr
# HTML для прогресс-бара
progress_bar_html = """
<div style="width: 100%; background-color: #e0e0e0; border-radius: 10px; overflow: hidden;">
<div style="width: 7%; background-color: #4caf50; height: 20px; text-align: center; color: white;">
7%
</div>
</div>
"""
# Интерфейс Gradio
with gr.Blocks() as demo:
gr.HTML(progress_bar_html)
demo.launch() |