mirror of
https://github.com/gradio-app/gradio.git
synced 2025-03-07 11:46:51 +08:00
* fixed visibility error in notebooks in github * Delete fixNotebooks.py deleted script used to fix notebooks * Update generate_notebooks.py fixed a small bug that prevented visibility of notebooks in GitHub
1.2 KiB
1.2 KiB
Gradio Demo: blocks_scroll¶
In [ ]:
!pip install -q gradio
In [ ]:
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()