mirror of
https://github.com/gradio-app/gradio.git
synced 2024-11-21 01:01:05 +08:00
9b42ba8f10
* changes * changes * revert changes * changes * add changeset * notebooks script * changes * changes --------- Co-authored-by: Ali Abid <aliabid94@gmail.com> Co-authored-by: gradio-pr-bot <gradio-pr-bot@users.noreply.github.com> Co-authored-by: Ali Abdalla <ali.si3luwa@gmail.com>
24 lines
584 B
Python
24 lines
584 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()
|