index.html 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174
  1. <!DOCTYPE html>
  2. <html style="height: 100%;">
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="viewport" content="width=device-width">
  6. <title>Touch detect and send to Node server</title>
  7. </head>
  8. <body style="height: 100%;">
  9. <div id="box" style="width: 100%; height: 100%; background-color: #EEEEEE;"></div>
  10. <script src="/jquery-1.7.2.js"></script>
  11. <script>
  12. /* simulation de touch events */
  13. /*
  14. function sendTouchEvent(x, y, element, eventType) {
  15. const touchObj = new Touch({
  16. identifier: Date.now(),
  17. target: element,
  18. clientX: x,
  19. clientY: y,
  20. radiusX: 2.5,
  21. radiusY: 2.5,
  22. rotationAngle: 10,
  23. force: 0.5,
  24. });
  25. const touchEvent = new TouchEvent(eventType, {
  26. cancelable: true,
  27. bubbles: true,
  28. touches: [touchObj],
  29. targetTouches: [],
  30. changedTouches: [touchObj],
  31. shiftKey: true,
  32. });
  33. element.dispatchEvent(touchEvent);
  34. }
  35. sendTouchEvent(150, 150, box, 'touchstart');
  36. sendTouchEvent(220, 200, box, 'touchmove');
  37. sendTouchEvent(220, 200, box, 'touchend');
  38. */
  39. const box = document.getElementById('box');
  40. const urlParams = new URLSearchParams(window.location.search);
  41. const sectionParam = urlParams.get('section');
  42. const section = sectionParam ? parseInt(sectionParam, 10) : 0;
  43. console.log(section);
  44. box.addEventListener('touchstart', function(evt) {
  45. console.log(evt);
  46. const touches = [];
  47. for (var i = 0; i < evt.changedTouches.length; i++) {
  48. touches[i] = {
  49. clientX: evt.changedTouches[i].clientX,
  50. clientY: evt.changedTouches[i].clientY,
  51. force: evt.changedTouches[i].force,
  52. identifier: section + evt.changedTouches[i].identifier,
  53. pageX: evt.changedTouches[i].pageX,
  54. pageY: evt.changedTouches[i].pageY,
  55. radiusX: evt.changedTouches[i].radiusX,
  56. radiusY: evt.changedTouches[i].radiusY,
  57. rotationAngle: evt.changedTouches[i].rotationAngle,
  58. screenX: evt.changedTouches[i].screenX,
  59. screenY: evt.changedTouches[i].screenY
  60. };
  61. };
  62. box.innerHTML = evt.touches.length;
  63. fetch('http://localhost:5001/json', {
  64. method: 'POST',
  65. mode: 'cors',
  66. cache: 'no-cache',
  67. credentials: 'same-origin',
  68. headers: {
  69. 'Content-Type': 'application/json'
  70. },
  71. redirect: 'follow',
  72. referrerPolicy: 'no-referrer',
  73. body: JSON.stringify({
  74. event: 'touchstart',
  75. screenW: $(document).width(),
  76. screenH: $(document).height(),
  77. changedTouches: touches
  78. })
  79. });
  80. evt.preventDefault();
  81. });
  82. box.addEventListener('touchmove', function(evt) {
  83. console.log(evt);
  84. const touches = [];
  85. for (var i = 0; i < evt.changedTouches.length; i++) {
  86. touches[i] = {
  87. clientX: evt.changedTouches[i].clientX,
  88. clientY: evt.changedTouches[i].clientY,
  89. force: evt.changedTouches[i].force,
  90. identifier: section + evt.changedTouches[i].identifier,
  91. pageX: evt.changedTouches[i].pageX,
  92. pageY: evt.changedTouches[i].pageY,
  93. radiusX: evt.changedTouches[i].radiusX,
  94. radiusY: evt.changedTouches[i].radiusY,
  95. rotationAngle: evt.changedTouches[i].rotationAngle,
  96. screenX: evt.changedTouches[i].screenX,
  97. screenY: evt.changedTouches[i].screenY
  98. };
  99. };
  100. box.innerHTML = evt.touches.length;
  101. fetch('http://localhost:5001/json', {
  102. method: 'POST',
  103. mode: 'cors',
  104. cache: 'no-cache',
  105. credentials: 'same-origin',
  106. headers: {
  107. 'Content-Type': 'application/json'
  108. },
  109. redirect: 'follow',
  110. referrerPolicy: 'no-referrer',
  111. body: JSON.stringify({
  112. event: 'touchmove',
  113. screenW: $(document).width(),
  114. screenH: $(document).height(),
  115. changedTouches: touches
  116. })
  117. });
  118. evt.preventDefault();
  119. });
  120. box.addEventListener('touchend', function(evt) {
  121. console.log(evt);
  122. const touches = [];
  123. for (var i = 0; i < evt.changedTouches.length; i++) {
  124. touches[i] = {
  125. clientX: evt.changedTouches[i].clientX,
  126. clientY: evt.changedTouches[i].clientY,
  127. force: evt.changedTouches[i].force,
  128. identifier: section + evt.changedTouches[i].identifier,
  129. pageX: evt.changedTouches[i].pageX,
  130. pageY: evt.changedTouches[i].pageY,
  131. radiusX: evt.changedTouches[i].radiusX,
  132. radiusY: evt.changedTouches[i].radiusY,
  133. rotationAngle: evt.changedTouches[i].rotationAngle,
  134. screenX: evt.changedTouches[i].screenX,
  135. screenY: evt.changedTouches[i].screenY
  136. };
  137. };
  138. box.innerHTML = evt.touches.length;
  139. fetch('http://localhost:5001/json', {
  140. method: 'POST',
  141. mode: 'cors',
  142. cache: 'no-cache',
  143. credentials: 'same-origin',
  144. headers: {
  145. 'Content-Type': 'application/json'
  146. },
  147. redirect: 'follow',
  148. referrerPolicy: 'no-referrer',
  149. body: JSON.stringify({
  150. event: 'touchend',
  151. screenW: $(document).width(),
  152. screenH: $(document).height(),
  153. changedTouches: touches
  154. })
  155. });
  156. evt.preventDefault();
  157. });
  158. if (!(typeof box.ontouchstart != 'undefined')) {
  159. box.style.border = '1px solid red';
  160. }
  161. </script>
  162. </body>
  163. </html>