gpt4 book ai didi

javascript - 将组件设置插入样式管理器

转载 作者:行者123 更新时间:2023-11-28 02:26:19 25 4
gpt4 key购买 nike

由于缺乏文档,我很难弄清楚如何将组件设置(特征)添加到样式管理器面板部分,就像在演示中一样。

是否存在代码块?我花了 2 天时间试图解决这个问题,但我找不到任何东西

styleManager: {

sectors: [
{
name: "General",
open: !1,
buildProps: ["float", "display", "position", "top", "right", "left", "bottom"]
}, {
name: "Dimension",
open: !1,
buildProps: ["width", "height", "max-width", "min-height", "margin", "padding"]
},

我想在样式管理器中添加组件设置

最佳答案

下面是一个如何向样式管理器添加名为“垂直对齐”的功能的示例:

var StyleManager = editor.StyleManager;
StyleManager.addProperty("Typography", {
name: "Vertical Align",
property: "vertical-align",
type: "select",
default: "auto",
list: [{
value: "auto",
name: "auto"
}, {
value: "top !important",
name: "top"
},
{
value: "middle !important",
name: "middle"
},
{
value: "bottom !important",
name: "bottom"
}
]
});

关于javascript - 将组件设置插入样式管理器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53818889/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com