@glowjs/core
Version:
GlowJS数字孪生引擎核心库。
63 lines (62 loc) • 1.24 kB
TypeScript
/**
* 广告牌选项
*/
export type BillboardOptions = {
/**
* 宽度,2D为字符串类型(示例 100px),3D为数字类型(示例 2)
*/
width: number | string;
/**
* 高度,2D为字符串类型(示例 100px),3D为数字类型(示例 2)
*/
height: number | string;
/**
* 背景色,为空表示透明
*/
background?: string;
/**
* 子元素
*/
children: {
/**
* 子元素类型
*/
type: 'image' | 'text';
/**
* 图片地址
*/
url?: string;
/**
* 宽度
*/
width?: string;
/**
* 高度
*/
height?: string;
/**
* 文本
*/
text?: string;
/**
* 用于绑定文本的键
*/
key?: string;
/**
* 颜色
*/
color?: string;
/**
* 字体大小
*/
fontSize?: number;
/**
* 左边距
*/
left?: string;
/**
* 顶边距
*/
top?: string;
}[];
};