- Obtenir le lien
- X
- Autres applications
Articles
Affichage des articles du avril, 2023
- Obtenir le lien
- X
- Autres applications
// Load the YouTube player API var tag = document.createElement('script'); tag.src = 'https://www.youtube.com/watch?v=S0Pd9VibNCU'; var firstScriptTag = document.getElementsByTagName('script')[0]; firstScriptTag.parentNode.insertBefore(tag, firstScriptTag); // Create a global variable for the player var player; // Set the video ID and player options var videoId = 'S0Pd9VibNCU'; var playerOptions = { height: '360', width: '640', videoId: videoId, events: { 'onReady': onPlayerReady, }, }; // When the player is ready, start playback and schedule repeat function onPlayerReady(event) { // Start playback event.target.playVideo(); // Set the duration and repeat interval in seconds var duration = 30; var repeatInterval = 5; // Repeat the video every repeatInterval seconds setInterval(function() { // Check if the video has ended if (event.target.getCurrentTime() >= duration) { // Seek t...