circulartext commited on
Commit
34301dd
·
verified ·
1 Parent(s): 7a666e2

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +12 -6
app.py CHANGED
@@ -25,9 +25,15 @@ text_to_type = "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed non
25
  # Main content area
26
  st.write("This is a Streamlit app where the text appears as if it's being typed like an A.I.")
27
 
28
- # Type the text automatically
29
- words = text_to_type.split()
30
- for word in words:
31
- st.write(word, end=' ', flush=True)
32
- time.sleep(0.3) # Adjust typing speed here
33
- st.write("")
 
 
 
 
 
 
 
25
  # Main content area
26
  st.write("This is a Streamlit app where the text appears as if it's being typed like an A.I.")
27
 
28
+ # Create a placeholder for the typed text
29
+ placeholder = st.empty()
30
+
31
+ # Type the text character by character with a typing animation effect
32
+ typed_text = ""
33
+ for char in text_to_type:
34
+ typed_text += char
35
+ placeholder.code(typed_text, language="text")
36
+ time.sleep(0.05) # Adjust typing speed here
37
+
38
+ # Add a delay after typing is complete
39
+ time.sleep(1)