gradio如何自定义网页标题和ico图标以及深色主题

自定义网页标题

with gr.Blocks(title="你的网页标题") as demo:

自定义网站ico图标

demo.launch(favicon_path='favicon.ico')

强制使用深色主题

# 在页面加载时强制启用深色模式
js_func = """
function refresh() {
    const url = new URL(window.location);

    if (url.searchParams.get('__theme') !== 'dark') {
        url.searchParams.set('__theme', 'dark');
        window.location.href = url.href;
    }
}
"""
with gr.Blocks(title="你的网站标题", js=js_func) as demo:

原创文章,作者:朋远方,如若转载,请注明出处:https://caovan.com/gradioruhezidingyiwangyebiaotiheicotubiao/.html

Like (0)
Donate 微信扫一扫 微信扫一扫
朋远方的头像朋远方
Previous 2024年11月20日 下午1:06
Next 2024年12月10日 下午2:00

相关推荐

发表回复

Please Login to Comment