Aucune description

Casper Dai 4a22f54ca7 refactor(profile): use drawer for display il y a 3 ans
keycloak-theme 81e5be7b86 feat: support the configuration of logo and application name il y a 3 ans
mock b869fd4358 feat: perfect weekly programs il y a 3 ans
platform 154487b8e1 feat: feat: support the configuration of favicon il y a 3 ans
public 154487b8e1 feat: feat: support the configuration of favicon il y a 3 ans
src 4a22f54ca7 refactor(profile): use drawer for display il y a 3 ans
.browserslistrc 198fba8995 feat: backup il y a 3 ans
.editorconfig 198fba8995 feat: backup il y a 3 ans
.env 4a22f54ca7 refactor(profile): use drawer for display il y a 3 ans
.env.development 4a22f54ca7 refactor(profile): use drawer for display il y a 3 ans
.env.fujian 9e35fcde24 feat(env): __WECHAT__ il y a 3 ans
.env.rc 4a22f54ca7 refactor(profile): use drawer for display il y a 3 ans
.env.staging f5e4fd849e chore(env): adjust build configuration il y a 3 ans
.env.xuzhou bdfe6d6241 feat: ad il y a 3 ans
.eslintignore 8ad8afd39b feat: password use MD5 il y a 3 ans
.eslintrc.js 977ef9588f chore: feature flags il y a 3 ans
.gitignore 198fba8995 feat: backup il y a 3 ans
README.md 27551b8560 chore: rEADME.md il y a 3 ans
babel.config.js 198fba8995 feat: backup il y a 3 ans
commitlint.config.js 1d357056f5 chore: commit message detection and dist is determined by env file il y a 3 ans
feature.js 4a22f54ca7 refactor(profile): use drawer for display il y a 3 ans
package.json 48168eabb0 refactor: adjust some styles il y a 3 ans
vue.config.js 154487b8e1 feat: feat: support the configuration of favicon il y a 3 ans
yarn.lock 48168eabb0 refactor: adjust some styles il y a 3 ans

README.md

组件介绍

根组件

{
    name: "大屏",
    width: 1920,
    height: 1080,
    backgroundColor: "#000000",
    backgroundImage: [],
    widgets: [],
    bgm: []
}

文本

{
	type: "CText",
    top: 0,
    left: 0,
    width: 200,
    height: 80,
    text: "文本",
    textAlign: "center",
    color: #FFFFFF",
    fontSize: 48,
    fontWeight: "normal",
    backgroundColor: "#00000000"
}

跑马灯

​ 垂直居中。

{
	type: "CMarquee",
    top: 0,
    left: 0,
    width: 200,
    height: 80,
    text: "文本",
    color: #FFFFFF",
    fontSize: 48,
    fontWeight: "normal",
    backgroundColor: "#00000000"
}

图片

{
	type: "CImage",
    top: 0,
    left: 0,
    width: 200,
    height: 80,
    radius: 0,
    interval: 10, // 切换间隔,单位秒
    toggleType: "cycle", // 切换方式,cycle 循环、random 随机
    animation: "none", // 动画,none 无、slide 幻灯片、fade 渐隐渐现、flip 翻转、section-flip 百叶窗
    sources: []
}

视频

​ 多个视频存在时至多只有一个有音频输出。

{
    type: "CVideo",
    top: 0,
    left: 0,
    width: 200,
    height: 80,
    radius: 0,
    mute: 1, // 静音
    toggleType: "cycle", // 切换方式,cycle 循环、random 随机
    sources: []
}

时间

​ 垂直居中。

{
    type: "CTime",
    top: 0,
    left: 0,
    width: 200,
    height: 80,
	color: "#FFFFFF",
	fontSize: 48,
    fontWeight: "normal",
    textAlign: "center",
    format: 'yyyy-MM-dd hh:mm'
}

天气

​ 垂直居中。

{
    type: "CWeather",
    top: 0,
    left: 0,
    width: 200,
    height: 80,
	color: "#FFFFFF",
	fontSize: 48,
    fontWeight: "normal",
    textAlign: "center"
}

网页

{
    type: "CWeb",
    top: 0,
    left: 0,
    width: 200,
    height: 80,
    href: ""
}