Bricks Schema 中文文档:Div

标签TAGS: 

📄 原始资料 (已截断)  |  展开查看原始 JSON(div.json){ “$schema”: “https://json-schema.org/draft/2020-12/schema”, “$id”: “bricks://elements/div”, “schemaVersion”: “2.3”, “type”: “object”, “title”: “Div”, “description”: “Schema for Bricks Div element”, “metadata”: { “name”: “div”, “category”: “layout”, “t…

📄 原始资料 (已截断)  |  展开查看原始 JSON(div.json)
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "bricks://elements/div",
  "schemaVersion": "2.3",
  "type": "object",
  "title": "Div",
  "description": "Schema for Bricks Div element",
  "metadata": {
    "name": "div",
    "category": "layout",
    "tag": "div",
    "nestable": true
  },
  "settings": {
    "_gridItemColumnSpan": {
      "label": "Grid column",
      "css": [
        {
          "property": "grid-column"
        }
      ],
      "valueSchema": {
        "type": "string"
      },
      "controlType": "text",
      "labelZh": "网格列"
    },
    "_gridItemRowSpan": {
      "label": "Grid row",
      "css": [
        {
          "property": "grid-row"
        }
      ],
      "valueSchema": {
        "type": "string"
      },
      "controlType": "text",
      "labelZh": "网格行"
    },
    "_gridItemJustifySelf": {
      "label": "Justify self",
      "css": [
        {
          "property": "justify-self"
        }
      ],
      "elementScope": "nonLayout",
      "valueSchema": {
        "type": "string",
        "enum": [
          "flex-start",
          "flex-end",
          "center",
          "baseline",
          "stretch"
        ]
      },
      "controlType": "align-items",
      "labelZh": "自身水平对齐"
    },
    "link": {
      "label": "Link",
      "hasRequired": true,
      "valueSchema": {
        "type": "object",
        "description": "Link settings",
        "properties": {
          "type": {
            "type": "string"
          },
          "url": {
            "type": "string"
          },
          "postId": {
            "type": [
              "string",
              "integer"
            ]
          },
          "newTab": {
            "type": "boolean"
          },
          "rel": {
            "type": "string"
          },
          "title": {
            "type": "string"
          },
          "ariaLabel": {
            "type": "string"
          },
          "lightboxId": {
            "type": "string"
          },
          "lightboxType": {
            "type": "string"
          }
        },
        "descriptionZh": "链接设置。"
      },
      "controlType": "link",
      "labelZh": "链接"
    },
    "tag": {
      "label": "HTML tag",
      "options": {
        "div": "div",
        "section": "section",
        "a": "a [",
        "divZh": "div",
        "aZh": "a"
      },
      "valueSchema": {
        "oneOf": [
          {
            "type": "string",
            "description": "Single selection",
            "descriptionZh": "单选。"
          },
          {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": "Multiple selection",
            "descriptionZh": "多选。"
          }
        ]
      },
      "controlType": "select",
      "labelZh": "HTML 标签"
    },
    "customTag": {
      "label": "Custom tag",
      "hasRequired": true,
      "valueSchema": {
        "type": "string"
      },
      "controlType": "text",
      "labelZh": "自定义标签"
    },
    "_display": {
      "label": "Display",
      "options": {
        "flex": "flex",
        "inline-flex": "inline-flex",
        "block": "block",
        "inline-block": "inline-block",
        "inline": "inline",
        "none": "none"
      },
      "css": [
        {
          "property": "display"
        },
        {
          "property": "align-items",
          "value": "initial",
          "required": "grid"
        }
      ],
      "elementScope": "nonLayout",
      "valueSchema": {
        "oneOf": [
          {
            "type": "string",
            "description": "Single selection",
            "descriptionZh": "单选。"
          },
          {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": "Multiple selection",
            "descriptionZh": "多选。"
          }
        ]
      },
      "controlType": "select",
      "labelZh": "显示"
    },
    "_gridGap": {
      "label": "Gap",
      "units": true,
      "css": [
        {
          "property": "grid-gap"
        }
      ],
      "hasRequired": true,
      "valueSchema": {
        "oneOf": [
          {
            "type": "string",
            "description": "Value with unit (e.g., \"10px\", \"50%\")",
            "descriptionZh": "带单位的值(例如 \"10px\"、\"50%\")。"
          },
          {
            "type": "number"
          }
        ]
      },
      "controlType": "number",
      "labelZh": "间距"
    },
    "_gridTemplateColumns": {
      "label": "Grid template columns",
      "css": [
        {
          "property": "grid-template-columns"
        }
      ],
      "hasRequired": true,
      "valueSchema": {
        "type": "string"
      },
      "controlType": "text",
      "labelZh": "网格列模板"
    },
    "_gridTemplateRows": {
      "label": "Grid template rows",
      "css": [
        {
          "property": "grid-template-rows"
        }
      ],
      "hasRequired": true,
      "valueSchema": {
        "type": "string"
      },
      "controlType": "text",
      "labelZh": "网格行模板"
    },
    "_gridAutoColumns": {
      "label": "Grid auto columns",
      "css": [
        {
          "property": "grid-auto-columns"
        }
      ],
      "hasRequired": true,
      "valueSchema": {
        "type": "string"
      },
      "controlType": "text",
      "labelZh": "网格自动列"
    },
    "_gridAutoRows": {
      "label": "Grid auto rows",
      "css": [
        {
          "property": "grid-auto-rows"
        }
      ],
      "hasRequired": true,
      "valueSchema": {
        "type": "string"
      },
      "controlType": "text",
      "labelZh": "网格自动行"
    },
    "_gridAutoFlow": {
      "label": "Grid auto flow",
      "options": {
        "row": "row",
        "column": "column",
        "dense": "dense"
      },
      "css": [
        {
          "property": "grid-auto-flow"
        }
      ],
      "hasRequired": true,
      "valueSchema": {
        "oneOf": [
          {
            "type": "string",
            "description": "Single selection",
            "descriptionZh": "单选。"
          },
          {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": "Multiple selection",
            "descriptionZh": "多选。"
          }
        ]
      },
      "controlType": "select",
      "labelZh": "网格自动流"
    },
    "_justifyItemsGrid": {
      "label": "Justify items",
      "css": [
        {
          "property": "justify-items"
        }
      ],
      "hasRequired": true,
      "valueSchema": {
        "type": "string",
        "enum": [
          "flex-start",
          "flex-end",
          "center",
          "space-between",
          "space-around",
          "space-evenly"
        ]
      },
      "controlType": "justify-content",
      "labelZh": "项目水平对齐"
    },
    "_alignItemsGrid": {
      "label": "Align items",
      "css": [
        {
          "property": "align-items"
        }
      ],
      "hasRequired": true,
      "valueSchema": {
        "type": "string",
        "enum": [
          "flex-start",
          "flex-end",
          "center",
          "baseline",
          "stretch"
        ]
      },
      "controlType": "align-items",
      "labelZh": "项目对齐"
    },
    "_justifyContentGrid": {
      "label": "Justify content",
      "css": [
        {
          "property": "justify-content"
        }
      ],
      "hasRequired": true,
      "valueSchema": {
        "type": "string",
        "enum": [
          "flex-start",
          "flex-end",
          "center",
          "space-between",
          "space-around",
          "space-evenly"
        ]
      },
      "controlType": "justify-content",
      "labelZh": "内容对齐"
    },
    "_alignContentGrid": {
      "label": "Align content",
      "css": [
        {
          "property": "align-content"
        }
      ],
      "hasRequired": true,
      "valueSchema": {
        "type": "

... (内容过长已截断,完整 JSON 见原始文件)

前言

Bricks Div 元素的 schema。

基本信息

  • 英文名称Div
  • 中文名称:Div
  • Schema IDbricks://elements/div
  • Schema 版本2.3
  • 类型object
  • 分类layout
  • Tagdiv
  • 内部名称div

设置项

  • _gridItemColumnSpan — 网格列 (text)
  • _gridItemRowSpan — 网格行 (text)
  • _gridItemJustifySelf — 自身水平对齐 (align-items)
  • link — 链接 (link)
  • tag — HTML 标签 (select)
  • customTag — 自定义标签 (text)
  • _display — 显示 (select)
  • _gridGap — 间距 (number)
  • _gridTemplateColumns — 网格列模板 (text)
  • _gridTemplateRows — 网格行模板 (text)
  • _gridAutoColumns — 网格自动列 (text)
  • _gridAutoRows — 网格自动行 (text)
  • _gridAutoFlow — 网格自动流 (select)
  • _justifyItemsGrid — 项目水平对齐 (justify-content)
  • _alignItemsGrid — 项目对齐 (align-items)
  • _justifyContentGrid — 内容对齐 (justify-content)
  • _alignContentGrid — 内容分布 (align-items)
  • _flexWrap — Flex 换行 (select)
  • _direction — 方向 (direction)
  • _alignSelf — 自身对齐 (align-items)
  • _justifyContent — 主轴对齐 (justify-content)
  • _alignItems — 交叉轴对齐 (align-items)
  • _columnGap — 列间距 (number)
  • _rowGap — 行间距 (number)
  • _flexGrow — 放大比例 (number)
  • _flexShrink — 缩小比例 (number)
  • _flexBasis — 伸缩基准 (text)
  • _order — 顺序 (number)
  • _content — 内容 (text)
  • _margin — 外边距 (spacing)
  • _padding — 内边距 (spacing)
  • _width — 宽度 (number)
  • _widthMin — 最小宽度 (number)
  • _widthMax — 最大宽度 (number)
  • _height — 高度 (number)
  • _heightMin — 最小高度 (number)
  • _heightMax — 最大高度 (number)
  • _aspectRatio — 宽高比 (text)
  • _position — 位置 (select)
  • _top — 顶部 (number)
  • _right — 右侧 (number)
  • _bottom — 底部 (number)
  • _left — 左侧 (number)
  • _zIndex — Z 索引 (number)
  • _visibility — 可见性 (select)
  • _overflow — 溢出 (text)
  • _opacity — 不透明度 (number)
  • _cursor — 光标 (select)
  • _isolation — 隔离 (select)
  • _mixBlendMode — 混合模式 (select)
  • _pointerEvents — 指针事件 (text)
  • _perspective — 透视 (number)
  • _perspectiveOrigin — 透视原点 (text)
  • _flexDirection — 方向 (direction)
  • _gap — 间距 (number)
  • _useMasonry — %s 布局 (checkbox)
  • _masonryColumn — 列数 (number)
  • _masonryGutter — 间距 (number)
  • _masonryHorizontalOrder — 水平顺序 (checkbox)
  • _masonryTransitionDuration — 过渡 (number)
  • _masonryTransitionMode — 显现动画 (select)
  • _typography — _typography (typography)
  • _background — _background (background)
  • _shapeDividers — 自定义形状 (repeater)
  • _gradient — _gradient (gradient)
  • _border — 边框 (border)
  • _boxShadow — 盒子阴影 (box-shadow)
  • _transform — 变换 (transform)
  • _transformOrigin — 变换原点 (text)
  • _motionElementParallax — 元素视差 (checkbox)
  • _motionElementParallaxSpeedX — 水平速度 (number)
  • _motionElementParallaxSpeedY — 垂直速度 (number)
  • _motionBackgroundParallax — 背景视差 (checkbox)
  • _motionBackgroundParallaxSpeed — 背景速度 (number)
  • _motionStartVisiblePercent — 视差起点 (number)
  • _cssCustom — 自定义 CSS (code)
  • _cssClasses — CSS 类 (text)
  • _cssId — CSS ID (text)
  • _cssFilters — CSS 滤镜 (filters)
  • _cssTransition — 过渡 (text)
  • _attributes — 姓名 (repeater)
  • _scrollSnapType — 类型 (select)
  • _scrollSnapAlign — 对齐 (select)
  • _scrollSnapStop — 停止 (select)

补充说明

更多细节可参考 Bricks 官方 Academy 文档