Widget:InitPageBossScript: mudanças entre as edições

sem sumário de edição
(Criou página com '<script> document.addEventListener('DOMContentLoaded', function () { Date.prototype.getWeekNumber = function () { let d = new Date(Date.UTC(this.getFullYear(), this.getMonth(), this.getDate())); let dayNum = d.getUTCDay() || 7; d.setUTCDate(d.getUTCDate() + 4 - dayNum); let yearStart = new Date(Date.UTC(d.getUTCFullYear(), 0, 1)); return Math.ceil((((d - yearStart) / 86400000) + 1) / 7) }; const url = window.location.origin; const actualWeekN...')
 
Sem resumo de edição
 
(17 revisões intermediárias por 2 usuários não estão sendo mostradas)
Linha 10: Linha 10:


   const url = window.location.origin;
   const url = window.location.origin;
   const actualWeekNumber = new Date().getWeekNumber();
   let actualWeekNumber = new Date().getWeekNumber();
  const today = new Date();
 
  if(today.getDay() === 1) {
    if(today.getHours() < 7 && today.getMinutes() < 40) actualWeekNumber--;
  }
 
   const bossCard = document.getElementById('boss-card');
   const bossCard = document.getElementById('boss-card');


   const bosses = [
   const bosses = [  
     {
     {
       name: 'Entei',
       name: 'Raikou',
       image: '/images/c/c4/Card_Boss-Fight-Entei.png'
       image: '/images/2/28/Card_Boss-Fight-Raikou.png',
     },
      link: "https://wiki.pokexgames.com/index.php/Boss_Fight_-_Raikou"
     },  
     {
     {
       name: 'Raikou',
       name: 'Suicune',
       image: '/images/2/28/Card_Boss-Fight-Raikou.png'
       image: '/images/8/8b/Card_Boss-Fight-Suicune.png',
      link: "https://wiki.pokexgames.com/index.php/Boss_Fight_-_Suicune"
     },
     },
     {
     {
       name: 'Suicune',
       name: 'Entei',
       image: '/images/8/8b/Card_Boss-Fight-Suicune.png'
       image: '/images/c/c4/Card_Boss-Fight-Entei.png',
      link: "https://wiki.pokexgames.com/index.php/Boss_Fight_-_Entei"
     },
     },
   ];
   ];
Linha 33: Linha 42:
     3° Suicune  
     3° Suicune  
   */
   */
  console.log(actualWeekNumber) 


   bossCard.src = url + bosses[actualWeekNumber % 3].image;
   bossCard.src = url + bosses[actualWeekNumber % 3].image;
  document.getElementById("boss-link").href = bosses[actualWeekNumber % 3].link;
   bossCard.alt = bosses[actualWeekNumber % 3].name;
   bossCard.alt = bosses[actualWeekNumber % 3].name;
});
});
</script>
</script>