|
@@ -852,8 +852,24 @@ let pageBoxPosition=reactive({
|
|
|
|
|
|
const pageTouchmove=(e)=>{
|
|
|
const touchObj=e.touches[0]
|
|
|
- pageBoxPosition.top=touchObj.clientY-82
|
|
|
- pageBoxPosition.left=touchObj.clientX-25
|
|
|
+ let top=touchObj.clientY-82
|
|
|
+ let left=touchObj.clientX-25
|
|
|
+ if(left<=0){
|
|
|
+ left=0
|
|
|
+ }
|
|
|
+ if(left>window.innerWidth-50){
|
|
|
+ left=window.innerWidth-50
|
|
|
+ }
|
|
|
+ if(top<=0){
|
|
|
+ top=0
|
|
|
+ }
|
|
|
+ if(top>window.innerHeight-115){
|
|
|
+ top=window.innerHeight-115
|
|
|
+ }
|
|
|
+
|
|
|
+ pageBoxPosition.top=top
|
|
|
+ pageBoxPosition.left=left
|
|
|
+
|
|
|
event.preventDefault();//阻止页面移动
|
|
|
}
|
|
|
</script>
|