|
@@ -185,6 +185,7 @@
|
|
|
class="operation-h"
|
|
|
text=""
|
|
|
direction="h"
|
|
|
+ :is-show="isShowOperationTip"
|
|
|
/>
|
|
|
</div>
|
|
|
</div>
|
|
@@ -334,10 +335,10 @@ const animationFrameTask = () => {
|
|
|
lastAnimationTimeStamp.value = timeStamp
|
|
|
animationFrameId.value = requestAnimationFrame(animationFrameTask)
|
|
|
}
|
|
|
-
|
|
|
+const isShowOperationTip = ref(true)
|
|
|
const handleTouchstart = (e) => {
|
|
|
if (hotVisible.value) return
|
|
|
-
|
|
|
+ isShowOperationTip.value = false
|
|
|
isMouseDown.value = true
|
|
|
moveSpeed.value = 0
|
|
|
lastMoveEventTimeStamp.value = 0
|