File size: 977 Bytes
f4bb0aa
b98a375
 
 
 
 
 
 
 
 
 
 
 
 
f4bb0aa
 
b98a375
f4bb0aa
 
 
 
 
b98a375
 
 
 
 
 
 
 
 
 
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
import streamlit as st
import time

# Set page background color to black
st.markdown(
    """
    <style>
    .reportview-container {
        background: black;
    }
    </style>
    """,
    unsafe_allow_html=True
)

# Title of the app
st.title("The Last A.I")

# Image
st.image("key1.jpg", caption="Your Image Caption", use_column_width=True)

# Main content area
st.write("This is a Streamlit app where the text appears as if it's being typed like an A.I.")
text_to_type = st.text_area("Type something here:", value="Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed non risus. Suspendisse lectus tortor, dignissim sit amet, adipiscing nec, ultricies sed, dolor. Cras elementum ultrices diam. Maecenas ligula massa, varius a, semper congue, euismod non, mi.")

if st.button("Type the text"):
    words = text_to_type.split()
    for word in words:
        st.write(word, end=' ', flush=True)
        time.sleep(0.3)  # Adjust typing speed here
    st.write("")