A-yum1 commited on
Commit
8f26561
·
1 Parent(s): df19981

Update index.html:Console.log every 10 seconds

Browse files
Files changed (1) hide show
  1. index.html +9 -0
index.html CHANGED
@@ -73,6 +73,12 @@
73
  <button class="result-button" id="resultButton" onclick="showResults()">結果を表示</button>
74
 
75
  <script>
 
 
 
 
 
 
76
  let isRecording = false;
77
  let mediaRecorder;
78
  let audioChunks = [];
@@ -157,6 +163,9 @@
157
  }
158
  }
159
  });
 
 
 
160
  </script>
161
  </body>
162
  </html>
 
73
  <button class="result-button" id="resultButton" onclick="showResults()">結果を表示</button>
74
 
75
  <script>
76
+
77
+ function tmp(){
78
+ console.log("10秒経ったよ");
79
+ }
80
+
81
+
82
  let isRecording = false;
83
  let mediaRecorder;
84
  let audioChunks = [];
 
163
  }
164
  }
165
  });
166
+
167
+ setInterval(tmp,10000);
168
+
169
  </script>
170
  </body>
171
  </html>