3_test.py 669 B

1234567891011121314151617181920212223242526272829
  1. """IMU放置于人体模型后的motion capture分析,包括离线、在线。读入或在线接入数据进行波形绘制、数据分析及分析结果的人体模型渲染和结果图表"""
  2. import streamlit as st
  3. from components.remove_style import hide_footer
  4. def on_line():
  5. st.button("在线")
  6. st.sidebar.success("在线")
  7. def off_line():
  8. st.button("离线")
  9. st.sidebar.success("离线")
  10. def render():
  11. st.set_page_config(page_title="test", page_icon=":running:")
  12. hide_footer()
  13. st.markdown("# Test")
  14. on_off_switch = st.toggle("离线/在线")
  15. if on_off_switch:
  16. on_line()
  17. else:
  18. off_line()
  19. render()