-1
我看到這個演示https://konvajs.github.io/docs/sandbox/Free_Drawing.html如何在移動設備上使用繪圖[Konvajs]
我已經能夠繪製成功的網絡桌面上,但在移動
不能得出請幫我
我看到這個演示https://konvajs.github.io/docs/sandbox/Free_Drawing.html如何在移動設備上使用繪圖[Konvajs]
我已經能夠繪製成功的網絡桌面上,但在移動
不能得出請幫我
KonvaJs來與mobile events爲移動設備提供支持。你所需要做的就是聽這些事件。我已將活動更改爲touchend
,touchstart
& touchmove
。所以現在它將適用於移動設備。這裏是plunkr。
stage.on('contentTouchstart.proto',() =>{});
stage.on('contentTouchmove.proto',() =>{});
stage.on('contentTouchend.proto',() =>{});
注意:如果您想爲您都需要設置兩個listners支持。
希望它有幫助。