如何使用 cytoscape.js 装饰带有背景颜色标题的 parent 节点,如面板样式

How to decorate a parent node with background coloured title like a panel style with cytoscape.js

我正在使用复合图形库 cytoscape.js 几天,熟悉它的演示和基本 API。

但我想知道是否可以用如下屏幕截图的样式装饰 parent 节点。

parent节点的默认样式只是一个矩形框。是否可以使用背景色标题呈现它?

非常感谢任何帮助。

为彩色标题使用背景图片。

我终于通过以下代码片段解决了我的问题。

{
    selector: ':parent',
    style: {
        'background-image': function(){
            return "title.jpg";
        },
        'padding-top' : '25px',
        'background-position-x' : '0',
        'background-position-y' : '0',
        'background-width' : '100%',
        'background-height' : '25px',
        'background-fit' : 'contain',
    }
}