5 710
edições
Sem resumo de edição |
Sem resumo de edição |
||
Linha 21: | Linha 21: | ||
const startDate = new Date('2024-08-23T07:40:00-03:00'); // Data de início com fuso horário GMT -3 | const startDate = new Date('2024-08-23T07:40:00-03:00'); // Data de início com fuso horário GMT -3 | ||
const now = new Date(); | const now = new Date(); | ||
// Calcula o número de semanas desde a data de início | |||
const weeksPassed = Math.floor((now - startDate) / (7 * 24 * 60 * 60 * 1000)); | |||
// Determina a semana atual baseada no tempo | |||
let currentWeekNumber = weeksPassed % dzWeeks.length; | |||
// Verifica se hoje é sexta-feira e se são 07:40 ou mais (horário local GMT-3) | // Verifica se hoje é sexta-feira e se são 07:40 ou mais (horário local GMT-3) | ||
if (now.getDay() === 5 && (now.getHours() > 7 || (now.getHours() === 7 && now.getMinutes() >= 40))) { | if (now.getDay() === 5 && (now.getHours() > 7 || (now.getHours() === 7 && now.getMinutes() >= 40))) { | ||
// | // Incrementa a semana se for sexta-feira após 07:40 | ||
currentWeekNumber = (currentWeekNumber + 1) % dzWeeks.length; | |||
} | |||
// Define a imagem e alt do cartão | |||
dzCard.src = url + dzWeeks[currentWeekNumber].image; | |||
dzCard.alt = dzWeeks[currentWeekNumber].name; | |||
}); | }); | ||
</script> | </script> |