0

我有 2 组,每组内都有圆形或矩形。我需要在单击时突出显示该组,并带有边框,以便用户知道哪个组处于活动状态。

4

1 回答 1

1

有很多方法可以做到这一点。例如:

group.on('click', () => {
  // toggle selected, this is just our custom property
  group.isSelected = !group.isSelected;
  // hide or show selection box
  selectionRect.visible(group.isSelected);
  // set box size and position
  selectionRect.setAttrs(group.getClientRect()); 
  layer.draw();
})

演示: http: //jsbin.com/nucopakijo/1/edit ?html,js,output

于 2016-10-14T02:04:48.723 回答