12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- // 组件容器基本设置
- export const containerDefaultConfig = {
- /* ===================================== 通用容器样式 ============================================ */
- style: {
- background: {
- type: "color", // none, color, image
- color: "rgba(0, 0, 0, 0.1)",
- image: "",
- fillType: "",
- },
- border: {
- type: "none",
- color: "#000",
- width: 0,
- },
- borderRadius: {
- type: "all", // all, custom
- value: 2, // 整体圆角值
- unit: "px", // 单位
- units: ["px", "%"], // 单位列表
- topLeft: 0,
- topRight: 0,
- bottomLeft: 0,
- bottomRight: 0,
- },
- boxShadow: {
- enabled: false,
- color: "#000",
- offsetX: 0,
- offsetY: 0,
- blurRadius: 0,
- spreadRadius: 0,
- inset: false,
- },
- backdropFilter: {
- enabled: false,
- blur: 0,
- }
- },
- /* ===================================== 通用容器属性 ============================================ */
- props: {
- width: 0,
- height: 0,
- x: 0,
- y: 0,
- paddingLeft: 0,
- paddingRight: 0,
- paddingTop: 0,
- paddingBottom: 0,
- rotateX: 0,
- rotateY: 0,
- rotateZ: 0,
- opacity: 1,
- },
- };
|