MediaWiki:Common.js: mudanças entre as edições

De otPokemon Wiki
Ir para navegação Ir para pesquisar
Sem resumo de edição
Sem resumo de edição
 
(153 revisões intermediárias por 2 usuários não estão sendo mostradas)
Linha 1: Linha 1:
/* Códigos JavaScript aqui colocados serão carregados por todos aqueles que acessarem alguma página deste wiki */
var coll1 = document.getElementsByClassName("collapsible-battle-pass");
var coll2 = document.getElementsByClassName("collapsible-pokemon");


.slider {
function toggleContent(clickedButton, contentToToggle) {
  var allContents = document.getElementsByClassName("content");
  for (var j = 0; j < allContents.length; j++) {
    allContents[j].style.maxHeight = null;
  }


   width: 100%;
   var allButtons = document.getElementsByClassName("collapsible-battle-pass");
   height: 100%;
   for (var k = 0; k < allButtons.length; k++) {
   position: relative;
    allButtons[k].classList.remove("active");
   background: #242424;
   }
   overflow: hidden;
  allButtons = document.getElementsByClassName("collapsible-pokemon");
   for (var k = 0; k < allButtons.length; k++) {
    allButtons[k].classList.remove("active");
   }


}
  if (contentToToggle.style.maxHeight) {
 
    contentToToggle.style.maxHeight = null;  
.slider img {
   } else {
 
    contentToToggle.style.maxHeight = contentToToggle.scrollHeight + "px";
  width: 100%;
   }
  height: 100%;
  object-fit: cover;
   position: relative;
  margin: auto;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  animation: fade 1s;
 
}
 
.slider .seta {
 
  z-index: 10;
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  left: auto;
  right: auto;
  width: auto;
  height: 1.5rem;
  font-size: 2.5em;
  color: cornsilk;
  opacity: 0.5;
   transition: opacity 1s;


  clickedButton.classList.add("active");
}
}


.slider .seta:hover {
for (var i = 0; i < coll1.length; i++) {
 
  coll1[i].addEventListener("click", function() {
  cursor: pointer;
    var content = this.nextElementSibling;
   opacity: 1;
    toggleContent(this, content);
 
   });
}
}


.slider .arrow-left {
for (var i = 0; i < coll2.length; i++) {
 
  coll2[i].addEventListener("click", function() {
   left: 2%;
    var content = this.nextElementSibling;
 
    toggleContent(this, content);
   });
}
}


.slider .arrow-right {
function toggleShinyList() {
 
    var shinyList = document.getElementById("shiny-list");
  right: 2%;
    if (shinyList.style.display === "none" || shinyList.style.display === "") {
 
        shinyList.style.display = "block";
    } else {
        shinyList.style.display = "flex";
    }
}
}


.slider .paginacao {


  position: absolute;
mw.loader.using('jquery', function () {
  margin: auto;
    $(document).ready(function () {
  top: auto;
        var isAscending = true;
  bottom: 2%;
        var $sortButton = $('<div class="sort-button" style="width: 60px; height: 50px; background-image: url(https://wiki.otpokemon.com/images/9/92/O-c.png); background-position: center; background-repeat: no-repeat; background-size: cover; border-radius: 3px; cursor: pointer; float: right; margin-right: 0.5%;margin-top: -50px;"></div>');
  left: 0;
        $('.square-div-shiny').before($sortButton);
  right: 0;
   
  width: 7rem;
  height: auto;
  z-index: 5;


}
        $sortButton.on('click', function () {
            var $container = $('.square-div-shiny');
            var $boxes = $container.children('.square-box-shiny');


.slider .paginacao .botao {
            $boxes.sort(function (a, b) {
                var numA = parseInt($(a).find('.square-name-shiny').text().match(/\d+/)[0], 10);
                var numB = parseInt($(b).find('.square-name-shiny').text().match(/\d+/)[0], 10);


width: auto;
                return isAscending ? numA - numB : numB - numA;
height: auto;
            });
display: inline-flex;
align-content: center;
justify-content: center;
color: #fff;


}
            $container.append($boxes);
            isAscending = !isAscending;


@keyframes fade {
            var newImage = isAscending
  from {
                ? 'https://wiki.otpokemon.com/images/e/e2/O-d.png'
    opacity: 0.1;
                : 'https://wiki.otpokemon.com/images/9/92/O-c.png';
  }
           
  to {
            $sortButton.css('background-image', 'url(' + newImage + ')');
    opacity: 1;
        });
  }
    });
}
});

Edição atual tal como às 00h17min de 17 de março de 2025

var coll1 = document.getElementsByClassName("collapsible-battle-pass");
var coll2 = document.getElementsByClassName("collapsible-pokemon");

function toggleContent(clickedButton, contentToToggle) {
  var allContents = document.getElementsByClassName("content");
  for (var j = 0; j < allContents.length; j++) {
    allContents[j].style.maxHeight = null; 
  }

  var allButtons = document.getElementsByClassName("collapsible-battle-pass");
  for (var k = 0; k < allButtons.length; k++) {
    allButtons[k].classList.remove("active");
  }
  allButtons = document.getElementsByClassName("collapsible-pokemon");
  for (var k = 0; k < allButtons.length; k++) {
    allButtons[k].classList.remove("active");
  }

  if (contentToToggle.style.maxHeight) {
    contentToToggle.style.maxHeight = null; 
  } else {
    contentToToggle.style.maxHeight = contentToToggle.scrollHeight + "px";
  }

  clickedButton.classList.add("active");
}

for (var i = 0; i < coll1.length; i++) {
  coll1[i].addEventListener("click", function() {
    var content = this.nextElementSibling; 
    toggleContent(this, content);  
  });
}

for (var i = 0; i < coll2.length; i++) {
  coll2[i].addEventListener("click", function() {
    var content = this.nextElementSibling; 
    toggleContent(this, content); 
  });
}

function toggleShinyList() {
    var shinyList = document.getElementById("shiny-list");
    if (shinyList.style.display === "none" || shinyList.style.display === "") {
        shinyList.style.display = "block";
    } else {
        shinyList.style.display = "flex";
    }
}


mw.loader.using('jquery', function () {
    $(document).ready(function () {
        var isAscending = true;
        var $sortButton = $('<div class="sort-button" style="width: 60px; height: 50px; background-image: url(https://wiki.otpokemon.com/images/9/92/O-c.png); background-position: center; background-repeat: no-repeat; background-size: cover; border-radius: 3px; cursor: pointer; float: right; margin-right: 0.5%;margin-top: -50px;"></div>');
        $('.square-div-shiny').before($sortButton);
    

        $sortButton.on('click', function () {
            var $container = $('.square-div-shiny');
            var $boxes = $container.children('.square-box-shiny');

            $boxes.sort(function (a, b) {
                var numA = parseInt($(a).find('.square-name-shiny').text().match(/\d+/)[0], 10);
                var numB = parseInt($(b).find('.square-name-shiny').text().match(/\d+/)[0], 10);

                return isAscending ? numA - numB : numB - numA;
            });

            $container.append($boxes);
            isAscending = !isAscending;

            var newImage = isAscending 
                ? 'https://wiki.otpokemon.com/images/e/e2/O-d.png' 
                : 'https://wiki.otpokemon.com/images/9/92/O-c.png';
            
            $sortButton.css('background-image', 'url(' + newImage + ')');
        });
    });
});