mirror of
https://github.com/gradio-app/gradio.git
synced 2025-01-06 10:25:17 +08:00
11b12d9456
* changes * changes * format * changes * add relative to block * changes * ensure statustracker component is never rendered by render Co-authored-by: pngwn <hello@pngwn.io>
24 lines
592 B
Python
24 lines
592 B
Python
import gradio as gr
|
|
|
|
|
|
demo = gr.Blocks()
|
|
|
|
with demo:
|
|
inp = gr.Textbox(placeholder="Enter text.")
|
|
scroll_btn = gr.Button("Scroll")
|
|
no_scroll_btn = gr.Button("No Scroll")
|
|
big_block = gr.HTML("""
|
|
<div style='height: 800px; width: 100px; background-color: pink;'></div>
|
|
""")
|
|
out = gr.Textbox()
|
|
|
|
scroll_btn.click(lambda x: x,
|
|
inputs=inp,
|
|
outputs=out,
|
|
scroll_to_output=True)
|
|
no_scroll_btn.click(lambda x: x,
|
|
inputs=inp,
|
|
outputs=out)
|
|
|
|
if __name__ == "__main__":
|
|
demo.launch() |