Mr.Yang

Results 3 comments of Mr.Yang

httpflv的方式不行,因为只提供了两个视频流,一个是hls h265,一个是rtsp,因为想前端处理又不想添加node服务,目前只能这种方式播放了,现在采用的方案是使用tag v20211104版本,且定时3.5小时刷新页面释放内存,刷新时保留页面参数,参数写入sessionStorage。 水平不够,目前只能想到这样的方式了,有点low,等大佬后面优化了再把版本切换过来。

## 我想使用scss 变量方式实现动态换肤,但是在element-ui外包裹一层class 后会导致页面element ui样式异常,请问大家有什么解决办法吗?代码如下 ### index.scss ``` /* 改变 icon 字体路径变量,必需 */ $--font-path: '~element-ui/lib/theme-chalk/fonts'; :root[theme='dark']{ @import "./theme/dark/element-vars.scss"; @import "~element-ui/packages/theme-chalk/src/index"; } :root[theme='light']{ @import "./theme/light/element-vars.scss"; @import "~element-ui/packages/theme-chalk/src/index"; } ``` ### elementPlugins.js...