Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
awacke1
/
GradioImageBackground
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
65e8835
GradioImageBackground
/
app.py
awacke1
Create app.py
65e8835
almost 2 years ago
raw
Copy download link
history
blame
Safe
185 Bytes
import
gradio
as
gr
css_code=
'body{background-image:url("https://picsum.photos/seed/picsum/200/300");}'
gr.Interface(
lambda
x:x,
"textbox"
,
"textbox"
, css=css_code).launch(debug=
True
)