答案 0 :(得分:1)
KonvaJs附带mobile events来为移动设备提供支持。您所需要做的就是倾听这些事件。我已将事件更改为touchend
,touchstart
& touchmove
。所以现在它将在移动设备上运行。这是plunkr。
stage.on('contentTouchstart.proto', () =>{});
stage.on('contentTouchmove.proto', () =>{});
stage.on('contentTouchend.proto', () =>{});
注意:如果您想为两者都提供支持,则需要为两者设置列表。
希望它有所帮助。