{
  "title": "cover-view",
  "type": "object",
  "properties": {
    "scroll-top": {
      "type": "number",
      "description": "设置顶部滚动偏移量，仅在设置了overflow-y: scroll成为滚动元素后生效"
    },
    "fixed-top": {
      "type": "number",
      "description": "设置与容器顶部的固定距离，效果相当于在 CSS 中设置 position: fixed 和 top 值，该属性优先级高于 fixed-bottom，CSS 设置的 position、top、bottom 值"
    },
    "fixed-right": {
      "type": "number",
      "description": "设置与容器右侧的固定距离，效果相当于在 CSS 中设置 position: fixed 和 right 值，该属性优先级高于 CSS 设置的 position、left、right 值"
    },
    "fixed-bottom": {
      "type": "number",
      "description": "设置与容器底部的固定距离，效果相当于在 CSS 中设置 position: fixed 和 bottom 值，该属性优先级高于 CSS 设置的 position、top、bottom 值"
    },
    "fixed-left": {
      "type": "number",
      "description": "设置与容器左侧的固定距离，效果相当于在 CSS 中设置 position: fixed 和 left 值，该属性优先级高于 fixed-right，CSS 设置的 position、left、right 值"
    }
  },
  "additionalProperties": false
}