Spaces:
Sleeping
Sleeping
File size: 1,479 Bytes
10e4cb6 34a4f65 a4cce9a 34a4f65 61d9513 72d0e7a 34a4f65 72d0e7a 61d9513 34a4f65 fed329c 61d9513 fed329c 61d9513 34a4f65 61d9513 72d0e7a 1af4b74 61d9513 10e4cb6 72d0e7a 10e4cb6 72d0e7a 10e4cb6 72d0e7a |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 |
import streamlit as st
# Replace with the direct image URL
flower_image_url = "https://i.postimg.cc/hG2FG85D/2.png"
# Inject custom CSS for the background with blur effect
st.markdown(
f"""
<style>
/* General background with flower image, centered, and blurred */
html, body, [data-testid="stAppViewContainer"] {{
background-image: url("{flower_image_url}");
background-size: contain; /* Keep the image size proportional */
background-position: center; /* Center the image */
background-repeat: no-repeat; /* Prevent tiling */
filter: blur(10px); /* Apply blur effect - adjust manually */
font-family: 'Arial', sans-serif;
}}
/* Adjust blur ratio for interactivity */
.blur-adjust {{
text-align: center;
margin-top: 20px;
}}
</style>
""",
unsafe_allow_html=True
)
# Streamlit UI elements
st.title("Word Cloud Application")
st.markdown("Welcome to the Word Cloud Application with a blurred, centered flower background!")
# Add interactivity for blur ratio adjustment
st.markdown('<div class="blur-adjust">Adjust the blur ratio manually in the code using the <code>filter: blur()</code> property.</div>', unsafe_allow_html=True)
# Add some interactivity
if st.button("Click Me"):
st.write("You clicked the button!")
# Add a select box
option = st.selectbox(
"Choose an option:",
["Option 1", "Option 2", "Option 3"]
)
st.write(f"You selected: {option}")
|