streamlit学习-如何修改css样式
- 效果图
- 代码(srv.py)
- 运行
streamlit默认的样式有时并不符合自己的要求。比如手机上的布局太浪费空间,我们希望一屏能放下所有的元素,本文演示了如何操作
效果图
代码(srv.py)
import streamlit as st #1.31.1
import cv2
import numpy as np
import glob
import os
import sys
import time, datetime
import cv2def get_image(kwargs):'''生成图片,删除旧图片'''image=np.ones((320,480,3),dtype=np.uint8)*128current_time = datetime.datetime.now()date_format ='%Y%m%d%H%M%S'time_string = current_time.strftime(date_format)for name in glob.glob("img_cache/*.png"):filepath=os.path.basename(name).split(".")[0]date_object = datetime.datetime.strptime(filepath, date_format)if (current_time-date_object).total_seconds()>60:os.remove(name)font = cv2.FONT_HERSHEY_SIMPLEX label=[time_string]for k