我正在尝试使用复选框选择节点,并更改其不透明度,但这是不可能的。我尝试使用有条件的。我还需要其他东西吗?喜欢:
session:
gc_probability: ~
# https://symfony.com/doc/current/reference/configuration/framework.html#handler-id
handler_id: session.handler.native_file
save_path: '%kernel.project_dir%/var/sessions/%kernel.environment%'
我的代码如下:
if (typeFilterList.includes(id)) {
node.style("opacity", 0.2);
} else {
node.style("opacity", 2.0);
}
每次我选中一个复选框时,节点的不透明度都会改变,但不会改变。