Files
FOFCompiler/js/json/HTMLcompilationAttr.js
2025-08-14 15:43:15 +08:00

5449 lines
101 KiB
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

let HTMLcompilationAttr_ = [
{
"title" : "网页快捷键",
"title_en" : "accesskey",
"T_libraryID" : "",
"id" : "16381672021122",
"usage" : "\"网页快捷键\" 属性规定激活(使元素获得焦点)元素的快捷键。<br>提示如果需要多个快捷键组合可以使用JS代码处理。<br>IE按住Alt键点击快捷键再按回车.<br>FireFox按住Alt+Shift键点击快捷键.<br>Chrome按住Alt键点击快捷键.<br>Safari按住Alt键点击快捷键.",
"explain" : "<超链接 链接地址='http://doc.lvoldev.com' 网页快捷键='h'>",
"children" : []
},
{
"title" : "类名",
"title_en" : "class",
"T_libraryID" : "",
"id" : "16381677924653",
"usage" : "类名 属性定义了元素的类名。<br>类名 属性通常用于指向样式表【css】的类。但是它也可以用于 JavaScript 来修改 HTML 元素。",
"explain" : "<!文档类型 网页类型>\n<网页>\n <网页头部>\n <网页信息 文档编码=\"UTF8\">\n <网页标题>FOF文档</网页标题>\n <样式>\n .intro {\n 颜色: blue;\n }\n .important {\n 颜色: green;\n }\n </样式>\n </网页头部>\n <文档主体>\n <标题1 类名=\"intro\">标题 1</标题1>\n <段落>我是段落内容。</段落>\n <段落 类名=\"important\">注意:这是一个很重要的段落。</段落>\n </文档主体>\n</网页>",
"children" : []
},
{
"title" : "内容可编辑",
"title_en" : "contenteditable",
"T_libraryID" : "",
"id" : "16381680122417",
"usage" : "内容可编辑 属性指定元素内容是否可编辑。<br>注意: 当元素中没有设置 \"内容可编辑\" 属性时,元素将从父元素继承。",
"explain" : "<段落 内容可编辑=\"真\">我是可以编辑的段落标签</段落>",
"children" :
[
{
"title" : "真",
"title_en" : "true",
"id" : "16393857665357",
"usage" : "代表内容是可以编辑的",
"explain" : "<段落 内容可编辑=\"真\">我是可以编辑的段落标签</段落>"
},
{
"title" : "假",
"title_en" : "false",
"id" : "16393858937689",
"usage" : "设置标签内容是不可以编辑的",
"explain" : "<段落 内容可编辑=\"假\">设置标签内容不可以编辑</段落>"
}
]
},
{
"title" : "上下文菜单",
"title_en" : "contextmenu",
"T_libraryID" : "",
"id" : "16381725075766",
"usage" : "上下文菜单 属性规定了元素的上下文菜单。当用户右击元素时将显示上下文菜单。<br>上下文菜单 属性的值是需要打开的 <菜单列表> 元素的 id。<br>注意:极其不推荐使用此标签,因为几乎所有的浏览器都不兼容!",
"explain" : "<区块 上下文菜单=\"mymenu\">\n <菜单列表 菜单类型=\"上下文菜单\" id=\"mymenu\">\n <菜单项目 label=\"Refresh\">\n </菜单项目>\n <菜单项目 label=\"Twitter\">\n </菜单项目>\n </菜单列表>\n</区块>",
"children" : []
},
{
"title" : "自定义属性",
"title_en" : "data-*",
"T_libraryID" : "",
"id" : "16381727474555",
"usage" : "\"自定义属性\" 属性用于存储私有页面后应用的自定义数据。<br>\"自定义属性\" 属性可以在所有的 HTML 元素中嵌入数据。<br>\"自定义属性\" 不要包含大写字母,在 data- 后必须至少有一个字符。<br>注意: 自定义属性前缀 \"data-\" 会被客户端忽略。",
"explain" : "<!文档类型 网页类型>\n<网页>\n <网页头部>\n <网页信息 文档编码=\"UTF8\">\n <网页标题>菜鸟教程(runoob.com)</网页标题>\n <脚本>\n 定义函数 回调函数名称(animal) {\n 变量 animalType = animal.getAttribute(\"www-sdrsrsd-zcxzc\");\n 信息框(\"The \" + animal.innerHTML + \" is a \" + animalType + \".\");\n }\n </脚本>\n </网页头部>\n <网友主体>\n <段落>点击一个标题,看看它是什么类型:</段落>\n <无序列表>\n <列表项 调用函数=\"回调函数名称(this)\" id=\"owl\" www-sdrsrsd-zcxzc=\"2222\">Owl</列表项>\n </无序列表>\n </网友主体>\n</网页>",
"children" : []
},
{
"title" : "设置文本方向",
"title_en" : "dir",
"T_libraryID" : "",
"id" : "16381728106433",
"usage" : "\"设置文本方向\" 属性规定元素内容的文本方向。",
"explain" : "<文本方向 设置方向=\"从右到左\">文本方向从右到左!</文本方向>",
"children" :
[
{
"title" : "从右到左",
"title_en" : "rtl",
"id" : "16394764743372",
"usage" : "从右向左的文本方向。",
"explain" : "<文本方向 设置方向=\"从右到左\">文本方向从右到左!</文本方向>"
},
{
"title" : "从左到右",
"title_en" : "ltr",
"id" : "16394765208056",
"usage" : "默认。从左向右的文本方向。",
"explain" : "<文本方向 设置方向=\"从左到右\">文本方向从左到右!</文本方向>"
},
{
"title" : "自动方向",
"title_en" : "auto",
"id" : "16394765615926",
"usage" : "让浏览器根据内容来判断文本方向。仅在文本方向未知时推荐使用。",
"explain" : "<文本方向 设置方向=\"auto\">让浏览器根据内容来判断文本方向</文本方向>"
}
]
},
{
"title" : "允许拖动",
"title_en" : "draggable",
"T_libraryID" : "",
"id" : "16381729245583",
"usage" : "允许拖动 属性规定元素是否可拖动。<br>提示: 链接和图像默认是可拖动的。<br>提示: 允许拖动 属性经常用于拖放操作。",
"explain" : "<段落 id=\"drag1\" 允许拖动=\"真\">这是一段可移动的段落。</段落>",
"children" :
[
{
"title" : "真",
"title_en" : "true",
"id" : "16394768247641",
"usage" : "规定元素是可拖动的。",
"explain" : "<段落 id=\"drag1\" 允许拖动=\"真\">这是一段可移动的段落。</段落>"
},
{
"title" : "假",
"title_en" : "false",
"id" : "16394768455910",
"usage" : "规定元素是不可拖动的。",
"explain" : "<段落 id=\"drag1\" 允许拖动=\"假\">我不能被拖动。</段落>"
},
{
"title" : "默认特性",
"title_en" : "auto",
"id" : "16394768718832",
"usage" : "使用浏览器的默认特性。",
"explain" : "<段落 id=\"drag1\" 允许拖动=\"默认特性\">使用浏览器的默认特性。</段落>"
}
]
},
{
"title" : "隐藏元素",
"title_en" : "hidden",
"T_libraryID" : "",
"id" : "16381730578539",
"usage" : "\"隐藏元素\" 属性规定对元素进行隐藏。<br>如果使用该属性,则会隐藏元素。<br>提示:可使用 JavaScript 来删除 \"隐藏元素\" 属性,使该元素变得可见。",
"explain" : "<段落 隐藏元素>这是一段隐藏的段落。</段落>",
"children" : []
},
{
"title" : "id",
"title_en" : "id",
"T_libraryID" : "",
"id" : "16381733917008",
"usage" : "id 属性规定 HTML 元素的唯一的 id。<br>id 在 HTML 文档中必须是唯一的。<br>id 属性可用作链接锚link anchor通过 JavaScript或通过 CSS 为带有指定 id 的元素改变或添加样式。",
"explain" : "<段落 id=\"唯一值\" >我设置的ID是唯一的不能在网页中重复。</段落>",
"children" : []
},
{
"title" : "语言代码",
"title_en" : "lang",
"T_libraryID" : "",
"id" : "16381735143690",
"usage" : "\"语言代码\" 属性规定元素内容的语言。",
"explain" : "<段落 语言代码=\"中文\">这是一个中文的段落</段落>",
"children" :
[
{
"title" : "中文",
"title_en" : "zh-cn",
"id" : "16394891777945",
"usage" : "表示字幕语言是中文字幕<br>提示:更多语言代码可以百度\"语言代码-en\"",
"explain" : "<段落 语言代码=\"中文\">这是一个中文的段落</段落>"
},
{
"title" : "英文",
"title_en" : "en",
"id" : "16394892371062",
"usage" : "表示字幕语言为英文字幕<br>提示:更多语言代码可以百度\"语言代码-en\"",
"explain" : "<段落 语言代码=\"英文\">HELLO WORLD</段落>"
}
]
},
{
"title" : "是否翻译内容",
"title_en" : "translate",
"T_libraryID" : "",
"id" : "16381737823883",
"usage" : "是否翻译内容 属性规定元素内容是否要翻译。<br>是否翻译内容 属性为\"真\"时一些英文内容会被浏览器提示翻译。<br>注意:本属性所有主流浏览器都不兼容",
"explain" : "<段落 是否翻译内容=\"真\">ice cream</段落>",
"children" :
[
{
"title" : "真",
"title_en" : "yes",
"id" : "16394898524398",
"usage" : "使浏览器翻译该内容",
"explain" : "<段落 是否翻译内容=\"真\">ice cream</段落>"
},
{
"title" : "假",
"title_en" : "no",
"id" : "16394898794174",
"usage" : "禁止浏览器翻译该内容",
"explain" : "<段落 是否翻译内容=\"假\">ice cream</段落>"
}
]
},
{
"title" : "行内样式",
"title_en" : "style",
"T_libraryID" : "",
"id" : "16381738795828",
"usage" : "行内样式 属性规定元素的行内样式inline style。<br>行内样式 属性将覆盖任何全局的样式设定,例如会覆盖在 <样式> 标签或在外部样式表中规定的样式。",
"explain" : "<标题1 行内样式=\"颜色:blue;文本-对齐:居中\">这是一个标题</标题1>\n<段落 行内样式=\"颜色:green\">这是一个段落。</段落>",
"children" : []
},
{
"title" : "tab顺序设定",
"title_en" : "tabindex",
"T_libraryID" : "",
"id" : "16381739975812",
"usage" : "tab顺序设定 属性规定当使用 \"tab\" 键进行导航时元素的顺序。",
"explain" : "<超链接 链接地址=\"https://www.lvoldev.com/\" tab顺序设定=\"2\"> FOFStudio2</超链接><换行>\n<超链接 链接地址=\"https://www.lvoldev.com/\" tab顺序设定=\"1\"> FOFStudio1</超链接><换行>\n<超链接 链接地址=\"https://www.lvoldev.com/\" tab顺序设定=\"3\"> FOFStudio3</超链接><换行>",
"children" : []
},
{
"title" : "提示信息",
"title_en" : "title",
"T_libraryID" : "",
"id" : "16381740444884",
"usage" : "\"提示信息\" 属性规定关于元素的额外信息。<br>这些信息通常会在鼠标移到元素上时显示一段工具提示文本tooltip text。",
"explain" : "<段落 提示信息=\"FOFStudio\">FOFStudio</段落>",
"children" : []
},
{
"title" : "拼写检查",
"title_en" : "translate",
"T_libraryID" : "",
"id" : "16381741436237",
"usage" : "拼写检查 属性规定是否对元素进行拼写和语法检查。<br>可以对以下内容进行拼写检查:<br>1、<数据框> 元素中的文本值(非密码)<br>2、<多行文本框> 元素中的文本<br>3、可编辑元素中的文本",
"explain" : "<段落 是否翻译内容='true' 内容可编辑='真'>这个段落可以被翻译</段落>",
"children" :
[
{
"title" : "真",
"title_en" : "true",
"id" : "16394914993664",
"usage" : "规定应当对元素的文本进行拼写检查。",
"explain" : "<段落 是否翻译内容='true' 内容可编辑='真'>这个段落可以被翻译</段落>"
},
{
"title" : "假",
"title_en" : "false",
"id" : "16394915561644",
"usage" : "规定不应对元素的文本进行拼写检查。",
"explain" : "<段落 是否翻译内容='false' 内容可编辑='真'>这个段落可以被翻译</段落>"
}
]
},
{
"title" : "内边距15",
"title_en" : "pad15",
"T_libraryID" : "16561493026524",
"children" : []
},
{
"title" : "内边距20",
"title_en" : "pad20",
"T_libraryID" : "16561493026524",
"children" : []
},
{
"title" : "方框",
"title_en" : "pane",
"T_libraryID" : "16561493026524",
"children" : []
},
{
"title" : "lay-无样式",
"title_en" : "lay-ignore",
"T_libraryID" : "16561493026524",
"children" : []
},
{
"title" : "lay-风格",
"title_en" : "lay-skin",
"T_libraryID" : "16561493026524",
"children" :
[
{
"title" : "原始风格",
"title_en" : "primary"
},
{
"title" : "开关风格",
"title_en" : "switch"
},
{
"title" : "行边框风格",
"title_en" : "line"
},
{
"title" : "列边框风格",
"title_en" : "row"
},
{
"title" : "无边框风格",
"title_en" : "nob"
},
{
"title" : "notepad",
"title_en" : "notepad"
}
]
},
{
"title" : "lay-单选框",
"title_en" : "lay-radio",
"T_libraryID" : "16561493026524",
"children" : []
},
{
"title" : "lay-尺寸",
"title_en" : "lay-size",
"T_libraryID" : "16561493026524",
"children" :
[
{
"title" : "小尺寸",
"title_en" : "sm"
},
{
"title" : "大尺寸",
"title_en" : "lg"
}
]
},
{
"title" : "lay-隔行",
"title_en" : "lay-even",
"T_libraryID" : "16561493026524",
"children" : []
},
{
"title" : "lay-数据",
"title_en" : "lay-data",
"T_libraryID" : "16561493026524",
"children" : []
},
{
"title" : "lay-选项",
"title_en" : "lay-options",
"T_libraryID" : "16561493026524",
"children" : []
},
{
"title" : "数据-更改",
"title_en" : "data-edit",
"T_libraryID" : "16561493026524",
"children" : []
},
{
"title" : "lay-排序",
"title_en" : "lay-sort",
"T_libraryID" : "16561493026524",
"children" :
[
{
"title" : "升序",
"title_en" : "asc"
},
{
"title" : "降序",
"title_en" : "desc"
}
]
},
{
"title" : "lay-移入",
"title_en" : "lay-over",
"T_libraryID" : "16561493026524",
"children" : []
},
{
"title" : "lay-功能条",
"title_en" : "lay-bar",
"T_libraryID" : "16561493026524",
"children" :
[
{
"title" : "禁用",
"title_en" : "disabled"
}
]
},
{
"title" : "lay-分隔符",
"title_en" : "lay-separator",
"T_libraryID" : "16561493026524",
"children" : []
},
{
"title" : "溢出",
"title_en" : "overflow",
"T_libraryID" : "16561493026524",
"children" : []
},
{
"title" : "轮播项目",
"title_en" : "carousel-item",
"T_libraryID" : "16561493026524",
"children" : []
},
{
"title" : "lay-箭头",
"title_en" : "lay-arrow",
"T_libraryID" : "16561493026524",
"children" :
[
{
"title" : "始终显示",
"title_en" : "always"
},
{
"title" : "悬停显示",
"title_en" : "hover"
},
{
"title" : "不显示",
"title_en" : "none"
}
]
},
{
"title" : "lay-类型",
"title_en" : "lay-type",
"T_libraryID" : "16561493026524",
"children" :
[
{
"title" : "上一页",
"title_en" : "sub"
},
{
"title" : "下一页",
"title_en" : "add"
}
]
},
{
"title" : "lay-指示器",
"title_en" : "lay-indicator",
"T_libraryID" : "16561493026524",
"children" :
[
{
"title" : "容器内部",
"title_en" : "inside"
},
{
"title" : "容器外部",
"title_en" : "outside"
},
{
"title" : "不显示",
"title_en" : "none"
}
]
},
{
"title" : "lay-轮播动画",
"title_en" : "lay-anim",
"T_libraryID" : "16561493026524",
"children" :
[
{
"title" : "左右切换",
"title_en" : "default"
},
{
"title" : "上下切换",
"title_en" : "updown"
},
{
"title" : "渐隐渐显切换",
"title_en" : "fade"
}
]
},
{
"title" : "lay-过滤器",
"title_en" : "lay-filter",
"T_libraryID" : "16561493026524",
"children" : []
},
{
"title" : "lay-提交",
"title_en" : "lay-submit",
"T_libraryID" : "16561493026524",
"children" : []
},
{
"title" : "lay-验证",
"title_en" : "lay-verify",
"T_libraryID" : "16561493026524",
"children" :
[
{
"title" : "必填项",
"title_en" : "required"
},
{
"title" : "手机号",
"title_en" : "phone"
},
{
"title" : "邮箱",
"title_en" : "email"
},
{
"title" : "网址",
"title_en" : "url"
},
{
"title" : "数字",
"title_en" : "number"
},
{
"title" : "日期",
"title_en" : "date"
},
{
"title" : "身份证",
"title_en" : "identity"
}
]
},
{
"title" : "lay-提示方式",
"title_en" : "lay-verType",
"T_libraryID" : "16561493026524",
"children" :
[
{
"title" : "吸附层",
"title_en" : "tips"
},
{
"title" : "对话框",
"title_en" : "alert"
},
{
"title" : "提示框",
"title_en" : "msg"
}
]
},
{
"title" : "lay-提示文字",
"title_en" : "lay-reqText",
"T_libraryID" : "16561493026524",
"children" : []
},
{
"title" : "lay-允许关闭",
"title_en" : "lay-allowClose",
"T_libraryID" : "16561493026524",
"children" :
[
{
"title" : "真",
"title_en" : "true"
}
]
},
{
"title" : "lay-百分比",
"title_en" : "lay-percent",
"T_libraryID" : "16561493026524",
"children" : []
},
{
"title" : "lay-显示百分比",
"title_en" : "lay-showPercent",
"T_libraryID" : "16561493026524",
"children" :
[
{
"title" : "显示",
"title_en" : "yes"
}
]
},
{
"title" : "lay-手风琴",
"title_en" : "lay-accordion",
"T_libraryID" : "16561493026524",
"children" : []
},
{
"title" : "lay-图像地址",
"title_en" : "lay-src",
"T_libraryID" : "16561493026524",
"children" : []
},
{
"title" : "lay-标题",
"title_en" : "lay-title",
"T_libraryID" : "16561493026524",
"children" : []
},
{
"title" : "lay-高度",
"title_en" : "lay-height",
"T_libraryID" : "16561493026524",
"children" : []
},
{
"title" : "lay-编码",
"title_en" : "lay-encode",
"T_libraryID" : "16561493026524",
"children" :
[
{
"title" : "真",
"title_en" : "true"
},
{
"title" : "假",
"title_en" : "false"
}
]
},
{
"title" : "条件渲染开始",
"title_en" : "v-if",
"T_libraryID" : "16673718184040",
"children" : []
},
{
"title" : "条件渲染结束",
"title_en" : "v-else",
"T_libraryID" : "16673718184040",
"children" : []
},
{
"title" : "条件渲染追加",
"title_en" : "v-else-if",
"T_libraryID" : "16673718184040",
"children" : []
},
{
"title" : "条件隐藏显示",
"title_en" : "v-show",
"T_libraryID" : "16673718184040",
"children" : []
},
{
"title" : "循环渲染",
"title_en" : "v-for",
"T_libraryID" : "16673718184040",
"children" :
[
{
"title" : "遍历",
"title_en" : "in"
},
{
"title" : "遍历2",
"title_en" : "of"
}
]
},
{
"title" : "维护状态",
"title_en" : "key",
"T_libraryID" : "16673718184040",
"children" : []
},
{
"title" : "绑定属性",
"title_en" : "v-bind",
"T_libraryID" : "16673718184040",
"children" : []
},
{
"title" : "绑定事件",
"title_en" : "v-on",
"T_libraryID" : "16673718184040",
"children" : []
},
{
"title" : "渲染HTML代码",
"title_en" : "v-html",
"T_libraryID" : "16673718184040",
"children" : []
},
{
"title" : "lay-文本",
"title_en" : "lay-text",
"T_libraryID" : "16561493026524",
"children" : []
},
{
"title" : "lay-事件",
"title_en" : "lay-event",
"T_libraryID" : "16561493026524",
"children" : []
},
{
"title" : "轮播项-标签",
"title_en" : "aria-label",
"T_libraryID" : "16776568059728",
"children" : []
},
{
"title" : "双向数据绑定",
"title_en" : "v-model",
"T_libraryID" : "16673718184040",
"children" : []
},
{
"title" : "lay-收缩",
"title_en" : "lay-shrink",
"T_libraryID" : "16561493026524",
"children" :
[
{
"title" : "所有",
"title_en" : "all"
}
]
},
{
"title" : "lay-搜索",
"title_en" : "lay-search",
"T_libraryID" : "16561493026524",
"children" :
[
{
"title" : "默认",
"title_en" : "default "
},
{
"title" : "区分",
"title_en" : "cs"
}
]
},
{
"title" : "网页类型",
"title_en" : "html",
"T_libraryID" : "16377337041892",
"children" : []
},
{
"title" : "缓存页面",
"title_en" : "manifest",
"T_libraryID" : "16377337041892",
"children" : []
},
{
"title" : "打开",
"title_en" : "open",
"T_libraryID" : "16377337041892",
"children" : []
},
{
"title" : "打开",
"title_en" : "open",
"T_libraryID" : "16377337041892",
"children" : []
},
{
"title" : "设置方向",
"title_en" : "dir",
"T_libraryID" : "16377337041892",
"children" :
[
{
"title" : "从左到右",
"title_en" : "ltr"
},
{
"title" : "从右到左",
"title_en" : "rtl"
}
]
},
{
"title" : "引用地址",
"title_en" : "cite",
"T_libraryID" : "16377337041892",
"children" : []
},
{
"title" : "删除原因",
"title_en" : "city",
"T_libraryID" : "16377337041892",
"children" : []
},
{
"title" : "删除时间",
"title_en" : "datetime",
"T_libraryID" : "16377337041892",
"children" : []
},
{
"title" : "来源",
"title_en" : "city",
"T_libraryID" : "16377337041892",
"children" : []
},
{
"title" : "时间",
"title_en" : "datetime",
"T_libraryID" : "16377337041892",
"children" : []
},
{
"title" : "临界最高值",
"title_en" : "high",
"T_libraryID" : "16377337041892",
"children" : []
},
{
"title" : "临界最低值",
"title_en" : "low",
"T_libraryID" : "16377337041892",
"children" : []
},
{
"title" : "最大值",
"title_en" : "max",
"T_libraryID" : "16377337041892",
"children" : []
},
{
"title" : "最小值",
"title_en" : "min",
"T_libraryID" : "16377337041892",
"children" : []
},
{
"title" : "当前位置",
"title_en" : "value",
"T_libraryID" : "16377337041892",
"children" : []
},
{
"title" : "最优值",
"title_en" : "optimum",
"T_libraryID" : "16377337041892",
"children" : []
},
{
"title" : "最高值",
"title_en" : "max",
"T_libraryID" : "16377337041892",
"children" : []
},
{
"title" : "当前值",
"title_en" : "value",
"T_libraryID" : "16377337041892",
"children" : []
},
{
"title" : "来源",
"title_en" : "cite",
"T_libraryID" : "16377337041892",
"children" : []
},
{
"title" : "时间",
"title_en" : "datetime",
"T_libraryID" : "16377337041892",
"children" : []
},
{
"title" : "字符编码",
"title_en" : "accept-charset",
"T_libraryID" : "16377337041892",
"children" :
[
{
"title" : "UTF8",
"title_en" : "UTF-8"
},
{
"title" : "拉丁字母表",
"title_en" : "ISO-8859-1"
},
{
"title" : "GBK",
"title_en" : "gbk"
}
]
},
{
"title" : "表单地址",
"title_en" : "action",
"T_libraryID" : "16377337041892",
"children" : []
},
{
"title" : "自动填充",
"title_en" : "autocomplete",
"T_libraryID" : "16377337041892",
"children" :
[
{
"title" : "记住",
"title_en" : "on"
},
{
"title" : "不记住",
"title_en" : "off"
}
]
},
{
"title" : "传输编码",
"title_en" : "enctype",
"T_libraryID" : "16377337041892",
"children" :
[
{
"title" : "默认编码",
"title_en" : "application/x-www-form-urlencoded"
},
{
"title" : "文件传输编码",
"title_en" : "multipart/form-data"
},
{
"title" : "普通编码",
"title_en" : "text/plain"
}
]
},
{
"title" : "交互类型",
"title_en" : "method",
"T_libraryID" : "16377337041892",
"children" :
[
{
"title" : "get",
"title_en" : "get"
},
{
"title" : "post",
"title_en" : "post"
}
]
},
{
"title" : "表单名称",
"title_en" : "name",
"T_libraryID" : "16377337041892",
"children" : []
},
{
"title" : "不验证",
"title_en" : "novalidate",
"T_libraryID" : "16377337041892",
"children" : []
},
{
"title" : "打开方式",
"title_en" : "target",
"T_libraryID" : "16377337041892",
"children" :
[
{
"title" : "新窗口",
"title_en" : "_blank"
},
{
"title" : "本窗口",
"title_en" : "_self"
},
{
"title" : "父框架",
"title_en" : "_parent"
},
{
"title" : "整体窗口",
"title_en" : "_top"
}
]
},
{
"title" : "文件类型",
"title_en" : "accept",
"T_libraryID" : "16377337041892",
"children" :
[
{
"title" : "声音文件",
"title_en" : "audio/*"
},
{
"title" : "视频文件",
"title_en" : "video/*"
},
{
"title" : "图像文件",
"title_en" : "image/*"
}
]
},
{
"title" : "错替文本",
"title_en" : "alt",
"T_libraryID" : "16377337041892",
"children" : []
},
{
"title" : "自动填充",
"title_en" : "autocomplete",
"T_libraryID" : "16377337041892",
"children" :
[
{
"title" : "记住",
"title_en" : "on"
},
{
"title" : "不记住",
"title_en" : "off"
}
]
},
{
"title" : "获得焦点",
"title_en" : "autofocus",
"T_libraryID" : "16377337041892",
"children" : []
},
{
"title" : "默认选中",
"title_en" : "checked",
"T_libraryID" : "16377337041892",
"children" : []
},
{
"title" : "禁用数据框",
"title_en" : "disabled",
"T_libraryID" : "16377337041892",
"children" : []
},
{
"title" : "所属表单",
"title_en" : "form",
"T_libraryID" : "16377337041892",
"children" : []
},
{
"title" : "重置表单地址",
"title_en" : "formaction",
"T_libraryID" : "16377337041892",
"children" : []
},
{
"title" : "重置传输编码",
"title_en" : "formenctype",
"T_libraryID" : "16377337041892",
"children" :
[
{
"title" : "默认编码",
"title_en" : "application/x-www-form-urlencoded"
},
{
"title" : "文件传输编码",
"title_en" : "multipart/form-data"
},
{
"title" : "普通编码",
"title_en" : "text/plain"
}
]
},
{
"title" : "重置交互类型",
"title_en" : "formmethod",
"T_libraryID" : "16377337041892",
"children" :
[
{
"title" : "get",
"title_en" : "get"
},
{
"title" : "post",
"title_en" : "post"
}
]
},
{
"title" : "重置表单不验证",
"title_en" : "formnovalidate",
"T_libraryID" : "16377337041892",
"children" : []
},
{
"title" : "重置打开方式",
"title_en" : "formtarget",
"T_libraryID" : "16377337041892",
"children" :
[
{
"title" : "新窗口",
"title_en" : "_blank"
},
{
"title" : "本窗口",
"title_en" : "_self"
},
{
"title" : "父框架",
"title_en" : "_parent"
},
{
"title" : "整体窗口",
"title_en" : "_top"
},
{
"title" : "指定框架",
"title_en" : "framename"
}
]
},
{
"title" : "图像类型高度",
"title_en" : "height",
"T_libraryID" : "16377337041892",
"children" : []
},
{
"title" : "下拉列表",
"title_en" : "list",
"T_libraryID" : "16377337041892",
"children" : []
},
{
"title" : "数据最大值",
"title_en" : "max",
"T_libraryID" : "16377337041892",
"children" : []
},
{
"title" : "最大字符数",
"title_en" : "maxlength",
"T_libraryID" : "16377337041892",
"children" : []
},
{
"title" : "数据最小值",
"title_en" : "min",
"T_libraryID" : "16377337041892",
"children" : []
},
{
"title" : "多选文件",
"title_en" : "multiple",
"T_libraryID" : "16377337041892",
"children" : []
},
{
"title" : "属性名称",
"title_en" : "name",
"T_libraryID" : "16377337041892",
"children" : []
},
{
"title" : "默认提示",
"title_en" : "placeholder",
"T_libraryID" : "16377337041892",
"children" : []
},
{
"title" : "只读状态",
"title_en" : "readonly",
"T_libraryID" : "16377337041892",
"children" : []
},
{
"title" : "必填状态",
"title_en" : "required",
"T_libraryID" : "16377337041892",
"children" : []
},
{
"title" : "大小",
"title_en" : "size",
"T_libraryID" : "16377337041892",
"children" : []
},
{
"title" : "图像地址",
"title_en" : "src",
"T_libraryID" : "16377337041892",
"children" : []
},
{
"title" : "递增大小",
"title_en" : "step",
"T_libraryID" : "16377337041892",
"children" : []
},
{
"title" : "数据类型",
"title_en" : "type",
"T_libraryID" : "16377337041892",
"children" :
[
{
"title" : "按钮类型",
"title_en" : "button"
},
{
"title" : "选择框",
"title_en" : "checkbox"
},
{
"title" : "颜色选择器",
"title_en" : "color"
},
{
"title" : "日期类型",
"title_en" : "date"
},
{
"title" : "精确日期类型",
"title_en" : "datetime"
},
{
"title" : "非时区日期类型",
"title_en" : "datetime-local"
},
{
"title" : "邮件输入",
"title_en" : "email"
},
{
"title" : "文件类型",
"title_en" : "file"
},
{
"title" : "隐藏数据框",
"title_en" : "hidden"
},
{
"title" : "图像类型",
"title_en" : "image"
},
{
"title" : "月期框",
"title_en" : "month"
},
{
"title" : "调节编辑框",
"title_en" : "number"
},
{
"title" : "密码输入",
"title_en" : "password"
},
{
"title" : "单选框",
"title_en" : "radio"
},
{
"title" : "精确范围",
"title_en" : "range"
},
{
"title" : "重置按钮",
"title_en" : "reset"
},
{
"title" : "搜索",
"title_en" : "search"
},
{
"title" : "提交表单",
"title_en" : "submit"
},
{
"title" : "电话输入",
"title_en" : "tel"
},
{
"title" : "文本输入",
"title_en" : "text"
},
{
"title" : "时间类型",
"title_en" : "time"
},
{
"title" : "链接框",
"title_en" : "url"
},
{
"title" : "周期框",
"title_en" : "week"
}
]
},
{
"title" : "数据值",
"title_en" : "value",
"T_libraryID" : "16377337041892",
"children" : []
},
{
"title" : "图像宽度",
"title_en" : "width",
"T_libraryID" : "16377337041892",
"children" : []
},
{
"title" : "获得焦点",
"title_en" : "autofocus",
"T_libraryID" : "16377337041892",
"children" : []
},
{
"title" : "文本框宽度",
"title_en" : "cols",
"T_libraryID" : "16377337041892",
"children" : []
},
{
"title" : "禁用文本框",
"title_en" : "disabled",
"T_libraryID" : "16377337041892",
"children" : []
},
{
"title" : "所属表单",
"title_en" : "form",
"T_libraryID" : "16377337041892",
"children" : []
},
{
"title" : "最多字数",
"title_en" : "maxlength",
"T_libraryID" : "16377337041892",
"children" : []
},
{
"title" : "属性名称",
"title_en" : "name",
"T_libraryID" : "16377337041892",
"children" : []
},
{
"title" : "默认提示",
"title_en" : "placeholder",
"T_libraryID" : "16377337041892",
"children" : []
},
{
"title" : "只读状态",
"title_en" : "readonly",
"T_libraryID" : "16377337041892",
"children" : []
},
{
"title" : "必填状态",
"title_en" : "required",
"T_libraryID" : "16377337041892",
"children" : []
},
{
"title" : "文本框高度",
"title_en" : "rows",
"T_libraryID" : "16377337041892",
"children" : []
},
{
"title" : "换行模式",
"title_en" : "wrap",
"T_libraryID" : "16377337041892",
"children" :
[
{
"title" : "有换行符",
"title_en" : "hard"
},
{
"title" : "无换行符",
"title_en" : "soft"
}
]
},
{
"title" : "获得焦点",
"title_en" : "autofocus",
"T_libraryID" : "16377337041892",
"children" : []
},
{
"title" : "禁用按钮",
"title_en" : "disabled",
"T_libraryID" : "16377337041892",
"children" : []
},
{
"title" : "所属表单",
"title_en" : "form",
"T_libraryID" : "16377337041892",
"children" : []
},
{
"title" : "重置表单地址",
"title_en" : "formaction",
"T_libraryID" : "16377337041892",
"children" : []
},
{
"title" : "重置传输编码",
"title_en" : "formenctype",
"T_libraryID" : "16377337041892",
"children" :
[
{
"title" : "默认编码",
"title_en" : "application/x-www-form-urlencoded"
},
{
"title" : "文件传输编码",
"title_en" : "multipart/form-data"
},
{
"title" : "普通编码",
"title_en" : "text/plain"
}
]
},
{
"title" : "重置交互类型",
"title_en" : "formmethod",
"T_libraryID" : "16377337041892",
"children" :
[
{
"title" : "get",
"title_en" : "get"
},
{
"title" : "post",
"title_en" : "post"
}
]
},
{
"title" : "重置表单不验证",
"title_en" : "formnovalidate",
"T_libraryID" : "16377337041892",
"children" : []
},
{
"title" : "重置打开方式",
"title_en" : "formtarget",
"T_libraryID" : "16377337041892",
"children" :
[
{
"title" : "新窗口",
"title_en" : "_blank"
},
{
"title" : "本窗口",
"title_en" : "_self"
},
{
"title" : "父框架",
"title_en" : "_parent"
},
{
"title" : "整体窗口",
"title_en" : "_top"
},
{
"title" : "指定框架",
"title_en" : "framename"
}
]
},
{
"title" : "属性名称",
"title_en" : "name",
"T_libraryID" : "16377337041892",
"children" : []
},
{
"title" : "按钮类型",
"title_en" : "type",
"T_libraryID" : "16377337041892",
"children" :
[
{
"title" : "提交表单",
"title_en" : "submit"
},
{
"title" : "普通按钮",
"title_en" : "button"
},
{
"title" : "重置按钮",
"title_en" : "reset"
}
]
},
{
"title" : "数据值",
"title_en" : "value",
"T_libraryID" : "16377337041892",
"children" : []
},
{
"title" : "获得焦点",
"title_en" : "autofocus",
"T_libraryID" : "16377337041892",
"children" : []
},
{
"title" : "禁用下拉框",
"title_en" : "disabled",
"T_libraryID" : "16377337041892",
"children" : []
},
{
"title" : "所属表单",
"title_en" : "form",
"T_libraryID" : "16377337041892",
"children" : []
},
{
"title" : "多选选项",
"title_en" : "multiple",
"T_libraryID" : "16377337041892",
"children" : []
},
{
"title" : "属性名称",
"title_en" : "name",
"T_libraryID" : "16377337041892",
"children" : []
},
{
"title" : "可见子选项数目",
"title_en" : "size",
"T_libraryID" : "16377337041892",
"children" : []
},
{
"title" : "禁用分组框",
"title_en" : "disabled",
"T_libraryID" : "16377337041892",
"children" : []
},
{
"title" : "分组描述",
"title_en" : "label",
"T_libraryID" : "16377337041892",
"children" : []
},
{
"title" : "禁用选项",
"title_en" : "disabled",
"T_libraryID" : "16377337041892",
"children" : []
},
{
"title" : "短描述",
"title_en" : "label",
"T_libraryID" : "16377337041892",
"children" : []
},
{
"title" : "默认选中",
"title_en" : "selected",
"T_libraryID" : "16377337041892",
"children" : []
},
{
"title" : "列表值",
"title_en" : "value",
"T_libraryID" : "16377337041892",
"children" : []
},
{
"title" : "绑定元素",
"title_en" : "for",
"T_libraryID" : "16377337041892",
"children" : []
},
{
"title" : "所属表单",
"title_en" : "form",
"T_libraryID" : "16377337041892",
"children" : []
},
{
"title" : "禁用分组框",
"title_en" : "disabled",
"T_libraryID" : "16377337041892",
"children" : []
},
{
"title" : "所属表单",
"title_en" : "form",
"T_libraryID" : "16377337041892",
"children" : []
},
{
"title" : "属性名称",
"title_en" : "name",
"T_libraryID" : "16377337041892",
"children" : []
},
{
"title" : "绑定数据框",
"title_en" : "for",
"T_libraryID" : "16377337041892",
"children" : []
},
{
"title" : "所属表单",
"title_en" : "form",
"T_libraryID" : "16377337041892",
"children" : []
},
{
"title" : "属性名称",
"title_en" : "name",
"T_libraryID" : "16377337041892",
"children" : []
},
{
"title" : "高度",
"title_en" : "height",
"T_libraryID" : "16377337041892",
"children" : []
},
{
"title" : "名字",
"title_en" : "name",
"T_libraryID" : "16377337041892",
"children" : []
},
{
"title" : "限制条件",
"title_en" : "sandbox",
"T_libraryID" : "16377337041892",
"children" :
[
{
"title" : "允许普通来源",
"title_en" : "allow-same-origin"
},
{
"title" : "允许上下文导航",
"title_en" : "allow-top-navigation"
},
{
"title" : "允许表单提交",
"title_en" : "allow-forms"
},
{
"title" : "允许执行JS",
"title_en" : "allow-scripts"
}
]
},
{
"title" : "融合页面",
"title_en" : "seamless",
"T_libraryID" : "16377337041892",
"children" : []
},
{
"title" : "内联地址",
"title_en" : "src",
"T_libraryID" : "16377337041892",
"children" : []
},
{
"title" : "覆盖框架内容",
"title_en" : "srcdoc",
"T_libraryID" : "16377337041892",
"children" : []
},
{
"title" : "宽度",
"title_en" : "width",
"T_libraryID" : "16377337041892",
"children" : []
},
{
"title" : "加载方式",
"title_en" : "loading",
"T_libraryID" : "16377337041892",
"children" :
[
{
"title" : "延时加载",
"title_en" : "lazy"
},
{
"title" : "立即加载",
"title_en" : "eager"
}
]
},
{
"title" : "错替文本",
"title_en" : "alt",
"T_libraryID" : "16377337041892",
"children" : []
},
{
"title" : "高度",
"title_en" : "height",
"T_libraryID" : "16377337041892",
"children" : []
},
{
"title" : "宽度",
"title_en" : "width",
"T_libraryID" : "16377337041892",
"children" : []
},
{
"title" : "提交点击坐标",
"title_en" : "ismap",
"T_libraryID" : "16377337041892",
"children" : []
},
{
"title" : "图像地址",
"title_en" : "src",
"T_libraryID" : "16377337041892",
"children" : []
},
{
"title" : "可点击区域",
"title_en" : "usemap",
"T_libraryID" : "16377337041892",
"children" : []
},
{
"title" : "属性名称",
"title_en" : "name",
"T_libraryID" : "16377337041892",
"children" : []
},
{
"title" : "错替文本",
"title_en" : "alt",
"T_libraryID" : "16377337041892",
"children" : []
},
{
"title" : "可点击坐标",
"title_en" : "coords",
"T_libraryID" : "16377337041892",
"children" : []
},
{
"title" : "跳转地址",
"title_en" : "href",
"T_libraryID" : "16377337041892",
"children" : []
},
{
"title" : "链接语言",
"title_en" : "hreflang",
"T_libraryID" : "16377337041892",
"children" : []
},
{
"title" : "设备类型",
"title_en" : "media",
"T_libraryID" : "16377337041892",
"children" :
[
{
"title" : "全部",
"title_en" : "all"
}
]
},
{
"title" : "文档关系",
"title_en" : "rel",
"T_libraryID" : "16377337041892",
"children" :
[
{
"title" : "替代页面版本",
"title_en" : "alternate"
},
{
"title" : "网页作者",
"title_en" : "author"
},
{
"title" : "书签网址",
"title_en" : "bookmark"
},
{
"title" : "帮助文档",
"title_en" : "help"
},
{
"title" : "版权信息",
"title_en" : "license"
},
{
"title" : "下一页面",
"title_en" : "next"
},
{
"title" : "拒绝爬虫",
"title_en" : "nofollow"
},
{
"title" : "禁用HTTP头部",
"title_en" : "noreferrer"
},
{
"title" : "缓存文件",
"title_en" : "prefetch"
},
{
"title" : "上一页面",
"title_en" : "prev"
},
{
"title" : "搜索",
"title_en" : "search"
},
{
"title" : "关键词",
"title_en" : "tag"
}
]
},
{
"title" : "区域形状",
"title_en" : "shape",
"T_libraryID" : "16377337041892",
"children" :
[
{
"title" : "全部区域",
"title_en" : "default"
},
{
"title" : "矩形",
"title_en" : "rect"
},
{
"title" : "圆形",
"title_en" : "circle"
},
{
"title" : "多边形",
"title_en" : "poly"
}
]
},
{
"title" : "打开方式",
"title_en" : "target",
"T_libraryID" : "16377337041892",
"children" :
[
{
"title" : "新窗口",
"title_en" : "_blank"
},
{
"title" : "本窗口",
"title_en" : "_self"
},
{
"title" : "父框架",
"title_en" : "_parent"
},
{
"title" : "整体窗口",
"title_en" : "_top"
}
]
},
{
"title" : "图像类型",
"title_en" : "type",
"T_libraryID" : "16377337041892",
"children" : []
},
{
"title" : "高度",
"title_en" : "height",
"T_libraryID" : "16377337041892",
"children" : []
},
{
"title" : "宽度",
"title_en" : "width",
"T_libraryID" : "16377337041892",
"children" : []
},
{
"title" : "自动播放",
"title_en" : "autoplay",
"T_libraryID" : "16377337041892",
"children" : []
},
{
"title" : "显示控件",
"title_en" : "controls",
"T_libraryID" : "16377337041892",
"children" : []
},
{
"title" : "循环播放",
"title_en" : "loop",
"T_libraryID" : "16377337041892",
"children" : []
},
{
"title" : "设置静音",
"title_en" : "muted",
"T_libraryID" : "16377337041892",
"children" : []
},
{
"title" : "加载方式",
"title_en" : "preload",
"T_libraryID" : "16377337041892",
"children" :
[
{
"title" : "打开页面立即加载",
"title_en" : "auto"
},
{
"title" : "预加载数据",
"title_en" : "meta"
},
{
"title" : "不加载",
"title_en" : "none"
}
]
},
{
"title" : "媒体地址",
"title_en" : "src",
"T_libraryID" : "16377337041892",
"children" : []
},
{
"title" : "媒体地址",
"title_en" : "src",
"T_libraryID" : "16377337041892",
"children" : []
},
{
"title" : "媒体类型",
"title_en" : "type",
"T_libraryID" : "16377337041892",
"children" :
[
{
"title" : "video_ogg",
"title_en" : "video/ogg"
},
{
"title" : "video_mp4",
"title_en" : "video/mp4"
},
{
"title" : "video_webm",
"title_en" : "video/webm"
},
{
"title" : "audio_ogg",
"title_en" : "audio/ogg"
},
{
"title" : "audio_mpeg",
"title_en" : "audio/mpeg"
}
]
},
{
"title" : "图像地址",
"title_en" : "srcset",
"T_libraryID" : "16377337041892",
"children" : []
},
{
"title" : "默认轨道",
"title_en" : "default",
"T_libraryID" : "16377337041892",
"children" : []
},
{
"title" : "轨道类型",
"title_en" : "kind",
"T_libraryID" : "16377337041892",
"children" :
[
{
"title" : "显示简短说明",
"title_en" : "captions"
},
{
"title" : "导航媒介资源",
"title_en" : "chapters"
},
{
"title" : "音频描述媒介",
"title_en" : "descriptions"
},
{
"title" : "轨道脚本数据",
"title_en" : "metadata"
},
{
"title" : "显示字幕",
"title_en" : "subtitles"
}
]
},
{
"title" : "字幕标题",
"title_en" : "label",
"T_libraryID" : "16377337041892",
"children" : []
},
{
"title" : "字幕地址",
"title_en" : "src",
"T_libraryID" : "16377337041892",
"children" : []
},
{
"title" : "字幕语言",
"title_en" : "srclang",
"T_libraryID" : "16377337041892",
"children" :
[
{
"title" : "英文",
"title_en" : "en"
},
{
"title" : "中文",
"title_en" : "zh-cn"
}
]
},
{
"title" : "自动播放",
"title_en" : "autoplay",
"T_libraryID" : "16377337041892",
"children" : []
},
{
"title" : "显示控件",
"title_en" : "controls",
"T_libraryID" : "16377337041892",
"children" : []
},
{
"title" : "高度",
"title_en" : "height",
"T_libraryID" : "16377337041892",
"children" : []
},
{
"title" : "宽度",
"title_en" : "width",
"T_libraryID" : "16377337041892",
"children" : []
},
{
"title" : "循环播放",
"title_en" : "loop",
"T_libraryID" : "16377337041892",
"children" : []
},
{
"title" : "设置静音",
"title_en" : "muted",
"T_libraryID" : "16377337041892",
"children" : []
},
{
"title" : "默认图像",
"title_en" : "poster",
"T_libraryID" : "16377337041892",
"children" : []
},
{
"title" : "加载方式",
"title_en" : "preload",
"T_libraryID" : "16377337041892",
"children" :
[
{
"title" : "打开页面立即加载",
"title_en" : "auto"
},
{
"title" : "预加载数据",
"title_en" : "metadata"
},
{
"title" : "不加载",
"title_en" : "none"
}
]
},
{
"title" : "媒体地址",
"title_en" : "src",
"T_libraryID" : "16377337041892",
"children" : []
},
{
"title" : "链接地址",
"title_en" : "href",
"T_libraryID" : "16377337041892",
"children" : []
},
{
"title" : "链接语言",
"title_en" : "hreflang",
"T_libraryID" : "16377337041892",
"children" :
[
{
"title" : "中文",
"title_en" : "zh-cn"
},
{
"title" : "英文",
"title_en" : "en"
}
]
},
{
"title" : "设备类型",
"title_en" : "media",
"T_libraryID" : "16377337041892",
"children" :
[
{
"title" : "全部",
"title_en" : "all"
}
]
},
{
"title" : "文档关系",
"title_en" : "rel",
"T_libraryID" : "16377337041892",
"children" :
[
{
"title" : "网页版本",
"title_en" : "alternate"
},
{
"title" : "外部样式表",
"title_en" : "stylesheet"
},
{
"title" : "首页面",
"title_en" : "start"
},
{
"title" : "下一页面",
"title_en" : "next"
},
{
"title" : "上一页面",
"title_en" : "prev"
},
{
"title" : "网页目录",
"title_en" : "contents"
},
{
"title" : "网页索引",
"title_en" : "index"
},
{
"title" : "解释术语",
"title_en" : "glossary"
},
{
"title" : "版权信息",
"title_en" : "copyright"
},
{
"title" : "页面章",
"title_en" : "chapter"
},
{
"title" : "页面节",
"title_en" : "section"
},
{
"title" : "页面子段",
"title_en" : "subsection"
},
{
"title" : "页面附录",
"title_en" : "appendix"
},
{
"title" : "帮助文档",
"title_en" : "help"
},
{
"title" : "相关网页",
"title_en" : "bookmark"
},
{
"title" : "不被谷歌追踪",
"title_en" : "nofollow"
}
]
},
{
"title" : "打开方式",
"title_en" : "target",
"T_libraryID" : "16377337041892",
"children" :
[
{
"title" : "新窗口",
"title_en" : "_blank"
},
{
"title" : "本窗口",
"title_en" : "_self"
},
{
"title" : "父框架",
"title_en" : "_parent"
},
{
"title" : "整体窗口",
"title_en" : "_top"
}
]
},
{
"title" : "因特网标准",
"title_en" : "type",
"T_libraryID" : "16377337041892",
"children" : []
},
{
"title" : "下载文件地址",
"title_en" : "download",
"T_libraryID" : "16377337041892",
"children" : []
},
{
"title" : "链接地址",
"title_en" : "href",
"T_libraryID" : "16377337041892",
"children" : []
},
{
"title" : "链接语言",
"title_en" : "hreflang",
"T_libraryID" : "16377337041892",
"children" :
[
{
"title" : "中文",
"title_en" : "zh-cn"
},
{
"title" : "英文",
"title_en" : "en"
}
]
},
{
"title" : "设备类型",
"title_en" : "media",
"T_libraryID" : "16377337041892",
"children" :
[
{
"title" : "全部",
"title_en" : "all"
}
]
},
{
"title" : "文档关系",
"title_en" : "rel",
"T_libraryID" : "16377337041892",
"children" :
[
{
"title" : "导入样式库",
"title_en" : "stylesheet"
},
{
"title" : "网页版本",
"title_en" : "alternate"
},
{
"title" : "网页作者",
"title_en" : "author"
},
{
"title" : "帮助文档",
"title_en" : "help"
},
{
"title" : "文档图标",
"title_en" : "icon"
},
{
"title" : "版权信息",
"title_en" : "license"
},
{
"title" : "下一文档",
"title_en" : "next"
},
{
"title" : "缓存文件",
"title_en" : "prefetch"
},
{
"title" : "上一文档",
"title_en" : "prev"
},
{
"title" : "搜索",
"title_en" : "search"
}
]
},
{
"title" : "因特网标准",
"title_en" : "type",
"T_libraryID" : "16377337041892",
"children" :
[
{
"title" : "定义样式",
"title_en" : "text/css"
}
]
},
{
"title" : "倒序显示",
"title_en" : "reversed",
"T_libraryID" : "16377337041892",
"children" : []
},
{
"title" : "序号起始值",
"title_en" : "start",
"T_libraryID" : "16377337041892",
"children" : []
},
{
"title" : "序号类型",
"title_en" : "type",
"T_libraryID" : "16377337041892",
"children" :
[
{
"title" : "数字",
"title_en" : "1"
},
{
"title" : "小写字母",
"title_en" : "a"
},
{
"title" : "大写字母",
"title_en" : "A"
},
{
"title" : "罗马小写数字",
"title_en" : "i"
},
{
"title" : "罗马大写数字",
"title_en" : "I"
}
]
},
{
"title" : "当前序号",
"title_en" : "value",
"T_libraryID" : "16377337041892",
"children" : []
},
{
"title" : "菜单项描述",
"title_en" : "label",
"T_libraryID" : "16377337041892",
"children" : []
},
{
"title" : "菜单类型",
"title_en" : "type",
"T_libraryID" : "16377337041892",
"children" :
[
{
"title" : "列表菜单",
"title_en" : "list"
},
{
"title" : "上下文菜单",
"title_en" : "context"
},
{
"title" : "工具栏菜单",
"title_en" : "toolbar"
}
]
},
{
"title" : "边框线",
"title_en" : "border",
"T_libraryID" : "16377337041892",
"children" :
[
{
"title" : "显示边框线",
"title_en" : "1"
}
]
},
{
"title" : "单元格内容间距",
"title_en" : "cellpadding",
"T_libraryID" : "16377337041892",
"children" : []
},
{
"title" : "单元格间距",
"title_en" : "cellspacing",
"T_libraryID" : "16377337041892",
"children" : []
},
{
"title" : "合并列数",
"title_en" : "colspan",
"T_libraryID" : "16377337041892",
"children" : []
},
{
"title" : "关联表格头",
"title_en" : "headers",
"T_libraryID" : "16377337041892",
"children" : []
},
{
"title" : "合并行数",
"title_en" : "rowspan",
"T_libraryID" : "16377337041892",
"children" : []
},
{
"title" : "表格头类型",
"title_en" : "scope",
"T_libraryID" : "16377337041892",
"children" :
[
{
"title" : "列表头",
"title_en" : "col"
},
{
"title" : "行表头",
"title_en" : "row"
},
{
"title" : "列组表头",
"title_en" : "colgroup"
},
{
"title" : "行组表头",
"title_en" : "rowgroup"
}
]
},
{
"title" : "合并列数",
"title_en" : "colspan",
"T_libraryID" : "16377337041892",
"children" : []
},
{
"title" : "关联表格头",
"title_en" : "headers",
"T_libraryID" : "16377337041892",
"children" : []
},
{
"title" : "合并行数",
"title_en" : "rowspan",
"T_libraryID" : "16377337041892",
"children" : []
},
{
"title" : "渲染列数",
"title_en" : "span",
"T_libraryID" : "16377337041892",
"children" : []
},
{
"title" : "宽度",
"title_en" : "width",
"T_libraryID" : "16377337041892",
"children" : []
},
{
"title" : "操作列数",
"title_en" : "span",
"T_libraryID" : "16377337041892",
"children" : []
},
{
"title" : "内容地址",
"title_en" : "src",
"T_libraryID" : "16377337041892",
"children" : []
},
{
"title" : "高度",
"title_en" : "height",
"T_libraryID" : "16377337041892",
"children" : []
},
{
"title" : "宽度",
"title_en" : "width",
"T_libraryID" : "16377337041892",
"children" : []
},
{
"title" : "因特尔标准",
"title_en" : "type",
"T_libraryID" : "16377337041892",
"children" :
[
{
"title" : "网页标准",
"title_en" : "text/html"
},
{
"title" : "图像标准JPG",
"title_en" : "image/jpg"
},
{
"title" : "视频标准webm",
"title_en" : "video/webm"
}
]
},
{
"title" : "对象数据",
"title_en" : "data",
"T_libraryID" : "16377337041892",
"children" : []
},
{
"title" : "所属表单",
"title_en" : "form",
"T_libraryID" : "16377337041892",
"children" : []
},
{
"title" : "高度",
"title_en" : "height",
"T_libraryID" : "16377337041892",
"children" : []
},
{
"title" : "宽度",
"title_en" : "width",
"T_libraryID" : "16377337041892",
"children" : []
},
{
"title" : "属性名称",
"title_en" : "name",
"T_libraryID" : "16377337041892",
"children" : []
},
{
"title" : "因特尔标准",
"title_en" : "type",
"T_libraryID" : "16377337041892",
"children" :
[
{
"title" : "PDF标准",
"title_en" : "application/pdf"
}
]
},
{
"title" : "可点击区域",
"title_en" : "usemap",
"T_libraryID" : "16377337041892",
"children" : []
},
{
"title" : "属性名称",
"title_en" : "name",
"T_libraryID" : "16377337041892",
"children" : []
},
{
"title" : "参数值",
"title_en" : "value",
"T_libraryID" : "16377337041892",
"children" : []
},
{
"title" : "关联HTTP",
"title_en" : "http-equiv",
"T_libraryID" : "16377337041892",
"children" :
[
{
"title" : "预定义样式表",
"title_en" : "default-style"
},
{
"title" : "独立页面",
"title_en" : "Window-target"
},
{
"title" : "清除缓存",
"title_en" : "cache-control"
},
{
"title" : "兼容模式",
"title_en" : "X-UA-Compatible"
},
{
"title" : "Cookie信息",
"title_en" : "Set-Cookie"
},
{
"title" : "页面编码",
"title_en" : "content-type"
},
{
"title" : "自动刷新",
"title_en" : "refresh"
},
{
"title" : "过期时间",
"title_en" : "Expires"
},
{
"title" : "禁止缓存",
"title_en" : "Pragma"
}
]
},
{
"title" : "文档编码",
"title_en" : "charset",
"T_libraryID" : "16377337041892",
"children" :
[
{
"title" : "UTF8",
"title_en" : "UTF-8"
},
{
"title" : "GBK",
"title_en" : "GBK"
}
]
},
{
"title" : "关联数据",
"title_en" : "content",
"T_libraryID" : "16377337041892",
"children" :
[
{
"title" : "编码UTF8",
"title_en" : "text/html; charset=UTF-8"
},
{
"title" : "编码GBK",
"title_en" : "text/html; charset=GBK"
},
{
"title" : "初始缩放值",
"title_en" : "initial-scale"
},
{
"title" : "最大缩放值",
"title_en" : "maximum-scale"
},
{
"title" : "最小缩放值",
"title_en" : "minimum-scale"
},
{
"title" : "用户缩放状态",
"title_en" : "user-scalable"
},
{
"title" : "填充视图宽度",
"title_en" : "device-width"
},
{
"title" : "禁用Cache",
"title_en" : "no-cache"
},
{
"title" : "最高IE版本",
"title_en" : "ie=edge"
},
{
"title" : "IE7引擎渲染",
"title_en" : "ie=7"
},
{
"title" : "IE8引擎渲染",
"title_en" : "ie=8"
},
{
"title" : "视图高度",
"title_en" : "height"
},
{
"title" : "视图宽度",
"title_en" : "width"
},
{
"title" : "真",
"title_en" : "yes"
},
{
"title" : "假",
"title_en" : "no"
}
]
},
{
"title" : "名称",
"title_en" : "name",
"T_libraryID" : "16377337041892",
"children" :
[
{
"title" : "Web程序名称",
"title_en" : "application-name"
},
{
"title" : "页面描述",
"title_en" : "description"
},
{
"title" : "页面关键词",
"title_en" : "keywords"
},
{
"title" : "文档软件包",
"title_en" : "generator"
},
{
"title" : "页面视图",
"title_en" : "viewport"
},
{
"title" : "文档作者",
"title_en" : "author"
}
]
},
{
"title" : "默认地址",
"title_en" : "href",
"T_libraryID" : "16377337041892",
"children" : []
},
{
"title" : "默认跳转方式",
"title_en" : "target",
"T_libraryID" : "16377337041892",
"children" :
[
{
"title" : "新窗口",
"title_en" : "_blank"
},
{
"title" : "本窗口",
"title_en" : "_self"
},
{
"title" : "父框架",
"title_en" : "_parent"
},
{
"title" : "整体窗口",
"title_en" : "_top"
},
{
"title" : "指定框架",
"title_en" : "framename"
}
]
},
{
"title" : "默认选中",
"title_en" : "checked",
"T_libraryID" : "16377337041892",
"children" : []
},
{
"title" : "禁用标签",
"title_en" : "disabled",
"T_libraryID" : "16377337041892",
"children" : []
},
{
"title" : "图标地址",
"title_en" : "icon",
"T_libraryID" : "16377337041892",
"children" : []
},
{
"title" : "默认内容",
"title_en" : "label",
"T_libraryID" : "16377337041892",
"children" : []
},
{
"title" : "单选框组",
"title_en" : "radiogroup",
"T_libraryID" : "16377337041892",
"children" : []
},
{
"title" : "显示类型",
"title_en" : "type",
"T_libraryID" : "16377337041892",
"children" :
[
{
"title" : "命令调用",
"title_en" : "command"
},
{
"title" : "单选框",
"title_en" : "radio"
},
{
"title" : "复选框",
"title_en" : "checkbox"
}
]
},
{
"title" : "多点坐标",
"title_en" : "points",
"T_libraryID" : "16377337041892",
"children" : []
},
{
"title" : "点击效果",
"title_en" : "hover-class",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "效果触发时间",
"title_en" : "hover-start-time",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "效果保留时间",
"title_en" : "hover-stay-time",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "类型",
"title_en" : "type",
"T_libraryID" : "16677044843047",
"children" :
[
{
"title" : "成功图标",
"title_en" : "success"
},
{
"title" : "成功图标2",
"title_en" : "success_no_circle"
},
{
"title" : "信息",
"title_en" : "info"
},
{
"title" : "警告图标",
"title_en" : "warn"
},
{
"title" : "时间图标",
"title_en" : "waiting"
},
{
"title" : "错误图标",
"title_en" : "cancel"
},
{
"title" : "下载图标",
"title_en" : "download"
},
{
"title" : "搜索图标",
"title_en" : "search"
},
{
"title" : "关闭图标",
"title_en" : "clear"
}
]
},
{
"title" : "大小",
"title_en" : "size",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "颜色",
"title_en" : "color",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "文本可选",
"title_en" : "selectable",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "文本可选2",
"title_en" : "user-select",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "是否支持空格",
"title_en" : "space",
"T_libraryID" : "16677044843047",
"children" :
[
{
"title" : "支持",
"title_en" : "ensp"
}
]
},
{
"title" : "允许横向滚动",
"title_en" : "scroll-x",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "允许纵向滚动",
"title_en" : "scroll-y",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "顶部触发事件距离",
"title_en" : "upper-threshold",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "尾部触发事件距离",
"title_en" : "lower-threshold",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "竖向滚动条位置",
"title_en" : "scroll-top",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "横向滚动条位置",
"title_en" : "scroll-left",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "滚动到指定元素",
"title_en" : "scroll-into-view",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "动画过渡",
"title_en" : "scroll-with-animation",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "双击回到顶部",
"title_en" : "enable-back-to-top",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "显示滚动条",
"title_en" : "show-scrollbar",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "显示指示点",
"title_en" : "indicator-dots",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "指示点颜色",
"title_en" : "indicator-color",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "选中指示点颜色",
"title_en" : "indicator-active-color",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "启用自动切换",
"title_en" : "autoplay",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "当前位置",
"title_en" : "current",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "自动切换时长",
"title_en" : "interval",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "滑动动画时长",
"title_en" : "duration",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "启用衔接动画",
"title_en" : "circular",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "启用纵向",
"title_en" : "vertical",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "前边距",
"title_en" : "previous-margin",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "后边距",
"title_en" : "next-margin",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "禁止用户触摸切换滑块",
"title_en" : "disable-touch",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "图像地址",
"title_en" : "src",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "缩放模式",
"title_en" : "mode",
"T_libraryID" : "16677044843047",
"children" :
[
{
"title" : "缩放图像",
"title_en" : "aspectFit"
},
{
"title" : "拉升图像",
"title_en" : "scaleToFill"
},
{
"title" : "短边缩放",
"title_en" : "aspectFill"
},
{
"title" : "高度缩放",
"title_en" : "widthFix"
},
{
"title" : "宽度缩放",
"title_en" : "heightFix"
},
{
"title" : "顶部显示",
"title_en" : "top"
},
{
"title" : "底部显示",
"title_en" : "bottom"
},
{
"title" : "中间显示",
"title_en" : "center"
},
{
"title" : "左边显示",
"title_en" : "left"
},
{
"title" : "右边显示",
"title_en" : "right"
}
]
},
{
"title" : "启用懒加载",
"title_en" : "lazy-load",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "长按显示微信菜单",
"title_en" : "show-menu-by-longpress",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "启用拖放",
"title_en" : "draggable",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "播放地址",
"title_en" : "src",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "启用自动播放",
"title_en" : "autoplay",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "启用静音播放",
"title_en" : "muted",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "启用循环播放",
"title_en" : "loop",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "初始播放位置",
"title_en" : "initial-time",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "视频时长",
"title_en" : "duration",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "是否显示默认控件",
"title_en" : "controls",
"T_libraryID" : "16677044843047",
"children" :
[
{
"title" : "真",
"title_en" : "true"
},
{
"title" : "假",
"title_en" : "false"
}
]
},
{
"title" : "展示弹幕",
"title_en" : "enable-danmu",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "弹幕开关按钮",
"title_en" : "danmu-btn",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "弹幕列表",
"title_en" : "danmu-list",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "非全屏调节手势",
"title_en" : "page-gesture",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "显示全屏按钮",
"title_en" : "show-fullscreen-btn",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "显示底部控制栏播放按钮",
"title_en" : "show-play-btn",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "显示视频中间播放按钮",
"title_en" : "show-center-play-btn",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "显示控制进度手势",
"title_en" : "enable-progress-gesture",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "视频显示模式",
"title_en" : "object-fit",
"T_libraryID" : "16677044843047",
"children" :
[
{
"title" : "包含",
"title_en" : "contain"
},
{
"title" : "填充",
"title_en" : "fill"
},
{
"title" : "覆盖",
"title_en" : "cover"
}
]
},
{
"title" : "封面图片",
"title_en" : "poster",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "按钮样式",
"title_en" : "type",
"T_libraryID" : "16677044843047",
"children" :
[
{
"title" : "默认",
"title_en" : "primary"
},
{
"title" : "白色",
"title_en" : "default"
},
{
"title" : "红色",
"title_en" : "warn"
}
]
},
{
"title" : "大小",
"title_en" : "size",
"T_libraryID" : "16677044843047",
"children" :
[
{
"title" : "默认大小",
"title_en" : "default"
},
{
"title" : "迷你大小",
"title_en" : "mini"
}
]
},
{
"title" : "开启缕空",
"title_en" : "plain",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "禁用按钮",
"title_en" : "disabled",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "启用加载动画",
"title_en" : "loading",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "触发表单",
"title_en" : "form-type",
"T_libraryID" : "16677044843047",
"children" :
[
{
"title" : "提交表单",
"title_en" : "submit"
},
{
"title" : "重置表单",
"title_en" : "reset"
}
]
},
{
"title" : "开放能力",
"title_en" : "open-type",
"T_libraryID" : "16677044843047",
"children" :
[
{
"title" : "获取用户信息",
"title_en" : "getUserInfo"
},
{
"title" : "打开APP",
"title_en" : "launchApp"
},
{
"title" : "获取用户手机号",
"title_en" : "getPhoneNumber"
},
{
"title" : "获取用户头像",
"title_en" : "chooseAvatar"
}
]
},
{
"title" : "传递APP参数",
"title_en" : "app-parameter",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "点击效果",
"title_en" : "hover-class",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "效果触发时间",
"title_en" : "hover-start-time",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "效果保留时间",
"title_en" : "hover-stay-time",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "链接地址",
"title_en" : "url",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "点击效果",
"title_en" : "hover-class",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "效果触发时间",
"title_en" : "hover-start-time",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "效果保留时间",
"title_en" : "hover-stay-time",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "跳转方式",
"title_en" : "open-type",
"T_libraryID" : "16677044843047",
"children" :
[
{
"title" : "打开并保留当前页",
"title_en" : "navigate"
},
{
"title" : "打开并关闭当前页",
"title_en" : "redirect"
},
{
"title" : "回退页面",
"title_en" : "navigateBack"
},
{
"title" : "跳转导航页面",
"title_en" : "switchTab"
}
]
},
{
"title" : "回退层级",
"title_en" : "delta",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "页面最小宽度",
"title_en" : "min-width",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "页面最大宽度",
"title_en" : "max-width",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "页面最小高度",
"title_en" : "min-height",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "页面最大高度",
"title_en" : "max-height",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "屏幕方向",
"title_en" : "orientation",
"T_libraryID" : "16677044843047",
"children" :
[
{
"title" : "横向",
"title_en" : "landscape"
},
{
"title" : "纵向",
"title_en" : "portrait"
}
]
},
{
"title" : "支持双指缩放",
"title_en" : "scale-area",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "可拖动方向",
"title_en" : "direction",
"T_libraryID" : "16677044843047",
"children" :
[
{
"title" : "所有",
"title_en" : "all"
},
{
"title" : "垂直",
"title_en" : "vertical"
},
{
"title" : "水平",
"title_en" : "horizontal"
},
{
"title" : "禁止移动",
"title_en" : "none"
}
]
},
{
"title" : "启用惯性拖动",
"title_en" : "inertia",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "超过边界可拖动",
"title_en" : "out-of-bounds",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "X坐标",
"title_en" : "x",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "Y坐标",
"title_en" : "y",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "阻尼系数",
"title_en" : "damping",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "摩擦系数",
"title_en" : "friction",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "最小缩放倍数",
"title_en" : "scale-min",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "最大缩放倍数",
"title_en" : "scale-max",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "缩放倍数",
"title_en" : "scale-value",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "是否启用动画",
"title_en" : "animation",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "启用双指缩放",
"title_en" : "scale",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "禁用",
"title_en" : "disabled",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "当前进度",
"title_en" : "percent",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "启用右侧显示百分比",
"title_en" : "show-info",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "圆角大小",
"title_en" : "border-radius",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "字体大小",
"title_en" : "font-size",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "线条宽度",
"title_en" : "stroke-width",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "已选择颜色",
"title_en" : "activeColor",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "未选择颜色",
"title_en" : "backgroundColor",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "值",
"title_en" : "value",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "禁用",
"title_en" : "disabled",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "选中状态",
"title_en" : "checked",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "颜色",
"title_en" : "color",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "值",
"title_en" : "value",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "输入类型",
"title_en" : "type",
"T_libraryID" : "16677044843047",
"children" :
[
{
"title" : "文本输入",
"title_en" : "text"
},
{
"title" : "数字输入",
"title_en" : "number"
},
{
"title" : "身份证输入",
"title_en" : "idcard"
},
{
"title" : "小数输入",
"title_en" : "digit"
},
{
"title" : "电话输入",
"title_en" : "tel"
},
{
"title" : "密码安全输入",
"title_en" : "safe-password"
},
{
"title" : "昵称输入",
"title_en" : "nickname"
}
]
},
{
"title" : "启用密码输入",
"title_en" : "password",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "默认提示",
"title_en" : "placeholder",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "默认提示样式",
"title_en" : "placeholder-class",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "禁用",
"title_en" : "disabled",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "最大输入长度",
"title_en" : "maxlength",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "光标与键盘距离",
"title_en" : "cursor-spacing",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "获得焦点",
"title_en" : "focus",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "键盘右下角按钮名称",
"title_en" : "confirm-type",
"T_libraryID" : "16677044843047",
"children" :
[
{
"title" : "发送",
"title_en" : "send"
},
{
"title" : "搜索",
"title_en" : "search"
},
{
"title" : "下一个",
"title_en" : "next"
},
{
"title" : "前往",
"title_en" : "go"
},
{
"title" : "完成",
"title_en" : "done"
}
]
},
{
"title" : "点击按钮后键盘不收起",
"title_en" : "confirm-hold",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "光标位置",
"title_en" : "cursor",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "光标起始位置",
"title_en" : "selection-start",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "光标结束位置",
"title_en" : "selection-end",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "键盘上推页面",
"title_en" : "adjust-position",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "安全键盘密码长度",
"title_en" : "safe-password-length",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "选择器类型",
"title_en" : "mode",
"T_libraryID" : "16677044843047",
"children" :
[
{
"title" : "普通选择器",
"title_en" : "selector"
},
{
"title" : "多列选择器",
"title_en" : "multiSelector"
}
]
},
{
"title" : "索引值",
"title_en" : "value",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "禁用",
"title_en" : "disabled",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "子项数据",
"title_en" : "range",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "值",
"title_en" : "value",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "选中状态",
"title_en" : "checked",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "禁用",
"title_en" : "disabled",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "颜色",
"title_en" : "color",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "最大值",
"title_en" : "max",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "最小值",
"title_en" : "min",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "步进值",
"title_en" : "step",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "值",
"title_en" : "value",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "已滑动颜色",
"title_en" : "activeColor",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "未滑动颜色",
"title_en" : "backgroundColor",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "滑块大小",
"title_en" : "block-size",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "滑块按钮颜色",
"title_en" : "block-color",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "显示当前值",
"title_en" : "show-value",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "禁用",
"title_en" : "disabled",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "选中状态",
"title_en" : "checked",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "禁用",
"title_en" : "disabled",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "开关类型",
"title_en" : "type",
"T_libraryID" : "16677044843047",
"children" :
[
{
"title" : "默认",
"title_en" : "switch"
},
{
"title" : "选择框",
"title_en" : "checkbox"
}
]
},
{
"title" : "颜色",
"title_en" : "color",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "值",
"title_en" : "value",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "默认提示",
"title_en" : "placeholder",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "默认提示样式",
"title_en" : "placeholder-class",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "禁用",
"title_en" : "disabled",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "最大输入长度",
"title_en" : "maxlength",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "光标与键盘距离",
"title_en" : "cursor-spacing",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "获得焦点",
"title_en" : "focus",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "键盘右下角按钮名称",
"title_en" : "confirm-type",
"T_libraryID" : "16677044843047",
"children" :
[
{
"title" : "发送",
"title_en" : "send"
},
{
"title" : "搜索",
"title_en" : "search"
},
{
"title" : "下一个",
"title_en" : "next"
},
{
"title" : "前往",
"title_en" : "go"
},
{
"title" : "完成",
"title_en" : "done"
}
]
},
{
"title" : "点击按钮后键盘不收起",
"title_en" : "confirm-hold",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "光标位置",
"title_en" : "cursor",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "光标起始位置",
"title_en" : "selection-start",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "光标结束位置",
"title_en" : "selection-end",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "键盘上推页面",
"title_en" : "adjust-position",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "唯一ID",
"title_en" : "canvas-id",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "媒体类型",
"title_en" : "media",
"T_libraryID" : "16377337041892",
"children" : []
},
{
"title" : "因特网标准",
"title_en" : "type",
"T_libraryID" : "16377337041892",
"children" :
[
{
"title" : "CSS标准",
"title_en" : "text/css"
}
]
},
{
"title" : "脚本文件",
"title_en" : "src",
"T_libraryID" : "16377337041892",
"children" : []
},
{
"title" : "异步执行",
"title_en" : "async",
"T_libraryID" : "16377337041892",
"children" : []
},
{
"title" : "文档编码",
"title_en" : "charset",
"T_libraryID" : "16377337041892",
"children" :
[
{
"title" : "UTF8",
"title_en" : "UTF-8"
}
]
},
{
"title" : "解析完成执行",
"title_en" : "defer",
"T_libraryID" : "16377337041892",
"children" : []
},
{
"title" : "因特网标准",
"title_en" : "type",
"T_libraryID" : "16377337041892",
"children" :
[
{
"title" : "网页标准",
"title_en" : "html"
}
]
},
{
"title" : "角标内容",
"title_en" : "text",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "颜色类型",
"title_en" : "type",
"T_libraryID" : "16677044843047",
"children" :
[
{
"title" : "灰色",
"title_en" : "default"
},
{
"title" : "蓝色",
"title_en" : "primary"
},
{
"title" : "绿色",
"title_en" : "success"
},
{
"title" : "黄色",
"title_en" : "warning"
},
{
"title" : "红色",
"title_en" : "error"
}
]
},
{
"title" : "角标大小",
"title_en" : "size",
"T_libraryID" : "16677044843047",
"children" :
[
{
"title" : "普通状态",
"title_en" : "normal"
},
{
"title" : "迷你状态",
"title_en" : "small"
}
]
},
{
"title" : "只显示圆点",
"title_en" : "is-dot",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "最大数字",
"title_en" : "max-num",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "绝对定位模式",
"title_en" : "absolute",
"T_libraryID" : "16677044843047",
"children" :
[
{
"title" : "右上角",
"title_en" : "rightTop"
},
{
"title" : "右下角",
"title_en" : "rightBottom"
},
{
"title" : "左下角",
"title_en" : "leftBottom"
},
{
"title" : "左上角",
"title_en" : "leftTop"
}
]
},
{
"title" : "设置",
"title_en" : "ref",
"T_libraryID" : "16677044843047",
"children" :
[
{
"title" : "日历选择器模式",
"title_en" : "calendar"
}
]
},
{
"title" : "弹窗模式",
"title_en" : "insert",
"T_libraryID" : "16677044843047",
"children" :
[
{
"title" : "假",
"title_en" : "false"
},
{
"title" : "真",
"title_en" : "true"
}
]
},
{
"title" : "显示农历",
"title_en" : "lunar",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "显示月份背景",
"title_en" : "showMonth",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "默认选择日期",
"title_en" : "date",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "独立展开模式",
"title_en" : "accordion",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "面板标题",
"title_en" : "title",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "标识",
"title_en" : "name",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "展开面板",
"title_en" : "open",
"T_libraryID" : "16677044843047",
"children" :
[
{
"title" : "真",
"title_en" : "true"
},
{
"title" : "假",
"title_en" : "false"
}
]
},
{
"title" : "是否禁用",
"title_en" : "disabled",
"T_libraryID" : "16677044843047",
"children" :
[
{
"title" : "假",
"title_en" : "false"
},
{
"title" : "真",
"title_en" : "true"
}
]
},
{
"title" : "动画开启状态",
"title_en" : "show-animation",
"T_libraryID" : "16677044843047",
"children" :
[
{
"title" : "真",
"title_en" : "true"
},
{
"title" : "假",
"title_en" : "false"
}
]
},
{
"title" : "内容分割线",
"title_en" : "title-border",
"T_libraryID" : "16677044843047",
"children" :
[
{
"title" : "分割线自动显示",
"title_en" : "auto"
},
{
"title" : "不显示分割线",
"title_en" : "none"
},
{
"title" : "一直显示分割线",
"title_en" : "show"
}
]
},
{
"title" : "左侧缩略图",
"title_en" : "thumb",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "组合框标题",
"title_en" : "label",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "值",
"title_en" : "value",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "组合框子项",
"title_en" : "candidates",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "默认提示",
"title_en" : "placeholder",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "未匹配提示",
"title_en" : "emptyTips",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "已选择数据值",
"title_en" : "v-model",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "标题",
"title_en" : "label",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "默认提示文本",
"title_en" : "placeholder",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "下拉数据",
"title_en" : "localdata",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "分组类型",
"title_en" : "mode",
"T_libraryID" : "16677044843047",
"children" :
[
{
"title" : "卡片模式",
"title_en" : "card"
}
]
},
{
"title" : "分组标题",
"title_en" : "title",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "数据列表",
"title_en" : "options",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "展示模式",
"title_en" : "show-select",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "自动去除空格",
"title_en" : "trim",
"T_libraryID" : "16677044843047",
"children" :
[
{
"title" : "全部",
"title_en" : "all"
}
]
},
{
"title" : "值",
"title_en" : "value",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "提示内容",
"title_en" : "placeholder",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "禁用",
"title_en" : "disabled",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "获得焦点",
"title_en" : "focus",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "头部图标",
"title_en" : "prefixIcon",
"T_libraryID" : "16677044843047",
"children" :
[
{
"title" : "搜索图标",
"title_en" : "search"
}
]
},
{
"title" : "尾部图标",
"title_en" : "suffixIcon",
"T_libraryID" : "16677044843047",
"children" :
[
{
"title" : "搜索图标",
"title_en" : "search"
}
]
},
{
"title" : "显示边框",
"title_en" : "inputBorder",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "开启阴影",
"title_en" : "shadow",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "左侧图标",
"title_en" : "left-icon",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "右侧图标",
"title_en" : "right-icon",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "左侧文本",
"title_en" : "leftText",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "右侧文本",
"title_en" : "rightText",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "导航标题",
"title_en" : "title",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "文字颜色",
"title_en" : "color",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "背景颜色",
"title_en" : "backgroundColor",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "固定顶部",
"title_en" : "fixed",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "包含状态栏",
"title_en" : "statusBar",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "显示图标",
"title_en" : "show-icon",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "开启滚动",
"title_en" : "scrollable",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "通告内容",
"title_en" : "text",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "值",
"title_en" : "value",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "最大值",
"title_en" : "max",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "值",
"title_en" : "value",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "未选择颜色",
"title_en" : "color",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "选中颜色",
"title_en" : "active-color",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "步骤数据",
"title_en" : "options",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "当前步骤",
"title_en" : "active",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "当前步骤颜色",
"title_en" : "active-color",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "大小",
"title_en" : "size",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "类型",
"title_en" : "type",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "颜色",
"title_en" : "color",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "自定义图标",
"title_en" : "custom-prefix",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "边框",
"title_en" : "border",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "隔行换色",
"title_en" : "stripe",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "空文本",
"title_en" : "emptyText",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "加载中",
"title_en" : "loading",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "类型",
"title_en" : "type",
"T_libraryID" : "16677044843047",
"children" :
[
{
"title" : "多选",
"title_en" : "selection"
}
]
},
{
"title" : "聚焦",
"title_en" : "focus",
"T_libraryID" : "16677044843047",
"children" :
[
{
"title" : "真",
"title_en" : "true"
},
{
"title" : "假",
"title_en" : "false"
}
]
},
{
"title" : "圆角",
"title_en" : "radius",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "清除按钮",
"title_en" : "clearButton",
"T_libraryID" : "16677044843047",
"children" :
[
{
"title" : "显示",
"title_en" : "always"
},
{
"title" : "自动",
"title_en" : "auto"
},
{
"title" : "不显示",
"title_en" : "none"
}
]
},
{
"title" : "取消按钮",
"title_en" : "cancelButton",
"T_libraryID" : "16677044843047",
"children" :
[
{
"title" : "显示",
"title_en" : "always"
},
{
"title" : "自动",
"title_en" : "auto"
},
{
"title" : "不显示",
"title_en" : "none"
}
]
},
{
"title" : "取消按钮文字",
"title_en" : "cancelText",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "背景颜色",
"title_en" : "bgColor",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "最大值",
"title_en" : "maxlength",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "默认提示",
"title_en" : "placeholder",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "状态",
"title_en" : "status",
"T_libraryID" : "16677044843047",
"children" :
[
{
"title" : "加载中",
"title_en" : "loading"
},
{
"title" : "加载前",
"title_en" : "more"
},
{
"title" : "没有更多",
"title_en" : "noMore"
}
]
},
{
"title" : "图标尺寸",
"title_en" : "iconSize",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "显示图标",
"title_en" : "showIcon",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "显示文字",
"title_en" : "showText",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "边框",
"title_en" : "border",
"T_libraryID" : "16677044843047",
"children" :
[
{
"title" : "真",
"title_en" : "true"
},
{
"title" : "假",
"title_en" : "false"
}
]
},
{
"title" : "描述",
"title_en" : "note",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "溢出隐藏",
"title_en" : "ellipsis",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "缩略图",
"title_en" : "thumb",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "右侧文字",
"title_en" : "rightText",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "是否显示箭头",
"title_en" : "showArrow",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "允许点击",
"title_en" : "clickable",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "跳转",
"title_en" : "to",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "缩略图大小",
"title_en" : "thumbSize",
"T_libraryID" : "16677044843047",
"children" :
[
{
"title" : "大图",
"title_en" : "lg"
},
{
"title" : "一般",
"title_en" : "medium"
},
{
"title" : "小图",
"title_en" : "sm"
}
]
},
{
"title" : "宽度",
"title_en" : "width",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "对齐方式",
"title_en" : "align",
"T_libraryID" : "16677044843047",
"children" :
[
{
"title" : "左对齐",
"title_en" : "left"
},
{
"title" : "居中",
"title_en" : "center"
},
{
"title" : "右对齐",
"title_en" : "right"
}
]
},
{
"title" : "排序",
"title_en" : "sortable",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "对齐方式",
"title_en" : "align",
"T_libraryID" : "16677044843047",
"children" :
[
{
"title" : "左对齐",
"title_en" : "left"
},
{
"title" : "居中",
"title_en" : "center"
},
{
"title" : "右对齐",
"title_en" : "right"
}
]
},
{
"title" : "左侧按钮文字",
"title_en" : "prevText",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "右侧按钮文字",
"title_en" : "nextText",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "当前页",
"title_en" : "current",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "总数据量",
"title_en" : "total",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "每页数据量",
"title_en" : "pageSize",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "动画",
"title_en" : "animation",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "类型",
"title_en" : "type",
"T_libraryID" : "16677044843047",
"children" :
[
{
"title" : "顶部弹出",
"title_en" : "top"
},
{
"title" : "居中弹出",
"title_en" : "center"
},
{
"title" : "底部弹出",
"title_en" : "bottom"
},
{
"title" : "左侧弹出",
"title_en" : "left"
},
{
"title" : "右侧弹出",
"title_en" : "right"
},
{
"title" : "消息提示",
"title_en" : "message"
},
{
"title" : "对话框",
"title_en" : "dialog"
},
{
"title" : "分享",
"title_en" : "share"
}
]
},
{
"title" : "点击蒙版是否关闭",
"title_en" : "is-mask-click",
"T_libraryID" : "16677044843047",
"children" :
[
{
"title" : "假",
"title_en" : "false"
},
{
"title" : "真",
"title_en" : "true"
}
]
},
{
"title" : "蒙版背景颜色",
"title_en" : "mask-background-color",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "是否适配底部安全区",
"title_en" : "safe-area",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "头像",
"title_en" : "avatar",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "圆形头像",
"title_en" : "avatarCircle",
"T_libraryID" : "16677044843047",
"children" :
[
{
"title" : "真",
"title_en" : "true"
},
{
"title" : "假",
"title_en" : "false"
}
]
},
{
"title" : "描述",
"title_en" : "note",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "摄像头位置",
"title_en" : "device-position",
"T_libraryID" : "16677044843047",
"children" :
[
{
"title" : "前置",
"title_en" : "front"
},
{
"title" : "后置",
"title_en" : "back"
}
]
},
{
"title" : "闪光灯",
"title_en" : "flash",
"T_libraryID" : "16677044843047",
"children" :
[
{
"title" : "自动",
"title_en" : "auto"
},
{
"title" : "开启",
"title_en" : "on"
},
{
"title" : "关闭",
"title_en" : "off"
}
]
},
{
"title" : "元素节点",
"title_en" : "nodes",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "空格",
"title_en" : "space",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "长按选中",
"title_en" : "selectable",
"T_libraryID" : "16677044843047",
"children" :
[
{
"title" : "真",
"title_en" : "true"
},
{
"title" : "假",
"title_en" : "false"
}
]
},
{
"title" : "长按图片菜单",
"title_en" : "image-menu-prevent",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "预览",
"title_en" : "preview",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "页面地址",
"title_en" : "src",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "浏览框样式",
"title_en" : "webview-styles",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "adpid",
"title_en" : "adpid",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "组件标识",
"title_en" : "ref",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "滑出位置",
"title_en" : "mode",
"T_libraryID" : "16677044843047",
"children" :
[
{
"title" : "左侧",
"title_en" : "left"
},
{
"title" : "右侧",
"title_en" : "right"
}
]
},
{
"title" : "点击遮罩关闭",
"title_en" : "maskClick",
"T_libraryID" : "16677044843047",
"children" :
[
{
"title" : "真",
"title_en" : "true"
},
{
"title" : "假",
"title_en" : "false"
}
]
},
{
"title" : "是否显示遮罩",
"title_en" : "mask",
"T_libraryID" : "16677044843047",
"children" :
[
{
"title" : "真",
"title_en" : "true"
},
{
"title" : "假",
"title_en" : "false"
}
]
},
{
"title" : "宽度",
"title_en" : "width",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "按钮样式",
"title_en" : "pattern",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "展开菜单数据",
"title_en" : "content",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "水平对齐方式",
"title_en" : "horizontal",
"T_libraryID" : "16677044843047",
"children" :
[
{
"title" : "左对齐",
"title_en" : "left"
},
{
"title" : "右对齐",
"title_en" : "right"
}
]
},
{
"title" : "垂直对齐方式",
"title_en" : "vertical",
"T_libraryID" : "16677044843047",
"children" :
[
{
"title" : "下对齐",
"title_en" : "bottom"
},
{
"title" : "上对齐",
"title_en" : "top"
}
]
},
{
"title" : "展开菜单显示方式",
"title_en" : "direction",
"T_libraryID" : "16677044843047",
"children" :
[
{
"title" : "水平显示",
"title_en" : "horizontal"
},
{
"title" : "垂直显示",
"title_en" : "vertical"
}
]
},
{
"title" : "每列数量",
"title_en" : "column",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "边框颜色",
"title_en" : "borderColor",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "显示边框",
"title_en" : "showBorder",
"T_libraryID" : "16677044843047",
"children" :
[
{
"title" : "真",
"title_en" : "true"
},
{
"title" : "假",
"title_en" : "false"
}
]
},
{
"title" : "方形显示",
"title_en" : "square",
"T_libraryID" : "16677044843047",
"children" :
[
{
"title" : "真",
"title_en" : "true"
},
{
"title" : "假",
"title_en" : "false"
}
]
},
{
"title" : "点击背景是否高亮",
"title_en" : "highlight",
"T_libraryID" : "16677044843047",
"children" :
[
{
"title" : "真",
"title_en" : "true"
},
{
"title" : "假",
"title_en" : "false"
}
]
},
{
"title" : "标题",
"title_en" : "title",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "副标题",
"title_en" : "sub-title",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "标题类型",
"title_en" : "type",
"T_libraryID" : "16677044843047",
"children" :
[
{
"title" : "竖线",
"title_en" : "line"
},
{
"title" : "圆形",
"title_en" : "circle"
},
{
"title" : "方形",
"title_en" : "square"
}
]
},
{
"title" : "按钮是否平铺",
"title_en" : "fill",
"T_libraryID" : "16677044843047",
"children" :
[
{
"title" : "真",
"title_en" : "true"
},
{
"title" : "假",
"title_en" : "false"
}
]
},
{
"title" : "组件参数",
"title_en" : "options",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "组件按钮组参数",
"title_en" : "buttonGroup",
"T_libraryID" : "16677044843047",
"children" : []
},
{
"title" : "链接地址",
"title_en" : "src",
"T_libraryID" : "16377337041892",
"children" : []
}
]