“Para una pregunta de Aksing entre el video” Código de respuesta

Para una pregunta de Aksing entre el video

<h1>Ask a question at a given point in a video</h1>

<p>The question is displayed after 10 seconds, if the answer given is correct (i.e. "Wikipedia"), the video continues, if not it starts again from the beginning</p>

<video id = "myVideo" controls>
 <source src = "http://tecfa.unige.ch/guides/html/html5-video/videos/state-of-wikipedia-480x272.mp4">
 <source src = "http://tecfa.unige.ch/guides/html/html5-video/videos/state-of-wikipedia-480x272.webm">
</video>
Aman Chauhan

Para una pregunta de Aksing entre el video

// First identify the video in the DOM
var myVideo = document.getElementById ("myVideo");
myVideo.ontimeupdate = function () {
 // Remove the decimal numbers from the time
 var currentTime = Math.floor (myVideo.currentTime);
 if (currentTime == 10) {
 myVideo.pause ();
 // Ask the question with a promt
 var r = prompt ("What is the video about?");
 // check the answer
 if (r.toLowerCase () == "wikipedia") {
 myVideo.currentTime = 11; // Add a second otherwise the question will be displayed again;
 myVideo.play ();
 } else {
 myVideo.currentTime = 0; // Put the video back to 0;
 myVideo.play ();
 }
 }
}
Aman Chauhan

Respuestas similares a “Para una pregunta de Aksing entre el video”

Preguntas similares a “Para una pregunta de Aksing entre el video”

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código