自定义网页标题
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