| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- export const canvasPropNameMap = {
- width: '宽度',
- height: '高度',
- bg: '背景'
- };
- export const textPropNameMap = {
- text: '内容',
- color: '颜色',
- fontSize: '字号',
- fontWeight: '字重',
- align: '对齐方式',
- x: '横坐标',
- y: '纵坐标',
- width: '宽度',
- height: '高度',
- borderRadius: '圆角半径'
- };
- export const scrollingTextPropNameMap = {
- text: '内容',
- color: '颜色',
- fontSize: '字号',
- fontWeight: '字重',
- align: '对齐方式',
- speed: '滚动速度',
- x: '横坐标',
- y: '纵坐标',
- width: '宽度',
- height: '高度',
- borderRadius: '圆角半径'
- };
- export const mediaAssetPropNameMap = {
- mediaId: '轮播组',
- width: '宽度',
- height: '高度',
- x: '横坐标',
- y: '纵坐标',
- borderRadius: '圆角半径'
- };
- export const webPagePropNameMap = {
- url: '网页链接',
- width: '宽度',
- height: '高度',
- x: '横坐标',
- y: '纵坐标',
- borderRadius: '圆角半径'
- };
- export const clockPropNameMap = {
- format: '时间格式',
- width: '宽度',
- height: '高度',
- x: '横坐标',
- y: '纵坐标',
- borderRadius: '圆角半径'
- };
- export const livePropNameMap = {
- liveUrl: '直播地址',
- playAudio: '播放音频',
- width: '宽度',
- height: '高度',
- x: '横坐标',
- y: '纵坐标',
- borderRadius: '圆角半径'
- };
|