index.html 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187
  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) : 100;
  43. const debugParams = urlParams.get('debug');
  44. const debug = debugParams ? true : false;
  45. if (debug) {
  46. console.log('--- Debug activated ---');
  47. console.log(`Section: ${section.toString()}`);
  48. }
  49. box.addEventListener('touchstart', function(evt) {
  50. if (debug) {
  51. console.log(evt);
  52. }
  53. const touches = [];
  54. for (var i = 0; i < evt.changedTouches.length; i++) {
  55. touches[i] = {
  56. clientX: evt.changedTouches[i].clientX,
  57. clientY: evt.changedTouches[i].clientY,
  58. force: evt.changedTouches[i].force,
  59. identifier: ((evt.changedTouches[i].identifier + 1) % 100) + section,
  60. pageX: evt.changedTouches[i].pageX,
  61. pageY: evt.changedTouches[i].pageY,
  62. radiusX: evt.changedTouches[i].radiusX,
  63. radiusY: evt.changedTouches[i].radiusY,
  64. rotationAngle: evt.changedTouches[i].rotationAngle,
  65. screenX: evt.changedTouches[i].screenX,
  66. screenY: evt.changedTouches[i].screenY
  67. };
  68. };
  69. box.innerHTML = evt.touches.length;
  70. fetch('http://localhost:5001/json', {
  71. method: 'POST',
  72. mode: 'cors',
  73. cache: 'no-cache',
  74. credentials: 'same-origin',
  75. headers: {
  76. 'Content-Type': 'application/json'
  77. },
  78. redirect: 'follow',
  79. referrerPolicy: 'no-referrer',
  80. body: JSON.stringify({
  81. event: 'touchstart',
  82. debug,
  83. screenW: $(document).width(),
  84. screenH: $(document).height(),
  85. changedTouches: touches
  86. })
  87. });
  88. evt.preventDefault();
  89. });
  90. box.addEventListener('touchmove', function(evt) {
  91. if (debug) {
  92. console.log(evt);
  93. }
  94. const touches = [];
  95. for (var i = 0; i < evt.changedTouches.length; i++) {
  96. touches[i] = {
  97. clientX: evt.changedTouches[i].clientX,
  98. clientY: evt.changedTouches[i].clientY,
  99. force: evt.changedTouches[i].force,
  100. identifier: ((evt.changedTouches[i].identifier + 1) % 100) + section,
  101. pageX: evt.changedTouches[i].pageX,
  102. pageY: evt.changedTouches[i].pageY,
  103. radiusX: evt.changedTouches[i].radiusX,
  104. radiusY: evt.changedTouches[i].radiusY,
  105. rotationAngle: evt.changedTouches[i].rotationAngle,
  106. screenX: evt.changedTouches[i].screenX,
  107. screenY: evt.changedTouches[i].screenY
  108. };
  109. };
  110. box.innerHTML = evt.touches.length;
  111. fetch('http://localhost:5001/json', {
  112. method: 'POST',
  113. mode: 'cors',
  114. cache: 'no-cache',
  115. credentials: 'same-origin',
  116. headers: {
  117. 'Content-Type': 'application/json'
  118. },
  119. redirect: 'follow',
  120. referrerPolicy: 'no-referrer',
  121. body: JSON.stringify({
  122. event: 'touchmove',
  123. debug,
  124. screenW: $(document).width(),
  125. screenH: $(document).height(),
  126. changedTouches: touches
  127. })
  128. });
  129. evt.preventDefault();
  130. });
  131. box.addEventListener('touchend', function(evt) {
  132. if (debug) {
  133. console.log(evt);
  134. }
  135. const touches = [];
  136. for (var i = 0; i < evt.changedTouches.length; i++) {
  137. touches[i] = {
  138. clientX: evt.changedTouches[i].clientX,
  139. clientY: evt.changedTouches[i].clientY,
  140. force: evt.changedTouches[i].force,
  141. identifier: ((evt.changedTouches[i].identifier + 1) % 100) + section,
  142. pageX: evt.changedTouches[i].pageX,
  143. pageY: evt.changedTouches[i].pageY,
  144. radiusX: evt.changedTouches[i].radiusX,
  145. radiusY: evt.changedTouches[i].radiusY,
  146. rotationAngle: evt.changedTouches[i].rotationAngle,
  147. screenX: evt.changedTouches[i].screenX,
  148. screenY: evt.changedTouches[i].screenY
  149. };
  150. };
  151. box.innerHTML = evt.touches.length;
  152. fetch('http://localhost:5001/json', {
  153. method: 'POST',
  154. mode: 'cors',
  155. cache: 'no-cache',
  156. credentials: 'same-origin',
  157. headers: {
  158. 'Content-Type': 'application/json'
  159. },
  160. redirect: 'follow',
  161. referrerPolicy: 'no-referrer',
  162. body: JSON.stringify({
  163. event: 'touchend',
  164. debug,
  165. screenW: $(document).width(),
  166. screenH: $(document).height(),
  167. changedTouches: touches
  168. })
  169. });
  170. evt.preventDefault();
  171. });
  172. if (!(typeof box.ontouchstart != 'undefined')) {
  173. box.style.border = '1px solid red';
  174. }
  175. </script>
  176. </body>
  177. </html>