File size: 421 Bytes
a6ce4c7
 
dbecd1e
 
a6ce4c7
dbecd1e
 
 
 
 
a6ce4c7
dbecd1e
 
 
 
 
a6ce4c7
dbecd1e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import gradio as gr

def update_iframe(url):
    return f'<iframe src="{url}" width="100%" height="500"></iframe>'

with gr.Blocks() as demo:
    with gr.Row():
        url_input = gr.Textbox(label="输入URL", value="http://animeit.cn/")
        submit_btn = gr.Button("加载")
    iframe = gr.HTML()

    submit_btn.click(
        fn=update_iframe,
        inputs=url_input,
        outputs=iframe
    )

demo.launch()