jichoi / lms_front star
PsHooN7979 08-14
240814 박세훈 문제 3_4 오디오 파일 적용
@0141fc5289f958416c6bd837e7253ab33747dc8a
 
client/resources/audio/tt.wav (Binary) (added)
+++ client/resources/audio/tt.wav
Binary file is not shown
client/views/pages/main/Chapter/Chapter3_4.vue
--- client/views/pages/main/Chapter/Chapter3_4.vue
+++ client/views/pages/main/Chapter/Chapter3_4.vue
@@ -22,8 +22,14 @@
                     <button>
                         <img
                             src="../../../../resources/img/btn10_s.png"
-                            alt=""
+                            alt="Listen"
+                            @click="playAudio"
                         />
+                        <audio
+                            id="audio-player"
+                            src="client/resources/audio/tt.wav"
+                            preload="auto"
+                        ></audio>
                     </button>
                 </div>
 
@@ -197,6 +203,11 @@
                     console.log("answer submit - error : ", error);
                 });
         },
+        playAudio() {
+            const audio = document.getElementById("audio-player");
+            audio.play();
+            console.log("playing");
+        },
     },
     watch: {},
     computed: {},
Add a comment
List