Streamlit之路-小技巧

相关网站:

Streamlit Experience · Streamlit (santiago911-streamlit-experience-streamlit-experience-f92buw.streamlit.app)

Streamlit API中文手册 | 学习软件编程 (hubwiz.com)

Steamlit 汉化 | Steamlit-translate-to-zh-CN (fmw666.github.io)

组件 • Streamlit


1.如何隐藏右上角的菜单

import streamlit as st

st.set_page_config(page_title="Page Title", layout="wide")

st.markdown("""
    <style>
        .reportview-container {
            margin-top: -2em;
        }
        #MainMenu {visibility: hidden;}
        .stDeployButton {display:none;}
        footer {visibility: hidden;}
        #stDecoration {display:none;}
    </style>
""", unsafe_allow_html=True)


发表评论:

◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。

Powered By Z-BlogPHP 1.7.0

@2021 yunfeng.net.cn 版权所有
浙ICP备16007973号-1