MediaWiki:Test.js: различия между версиями

Страница интерфейса MediaWiki
Нет описания правки
Нет описания правки
 
(не показаны 24 промежуточные версии 2 участников)
Строка 1: Строка 1:
(function () {
function toggleInfo(race) {
    var container = document.querySelector('.timeline-container');
  var infoBlock = document.getElementById(race + '-info');
    if (!container) return;
  if (infoBlock.style.display === 'block') {
 
    infoBlock.style.display = 'none';
     var events = document.querySelectorAll('.timeline-event');
  } else {
     if (!events.length) return;
     var allInfoBlocks = document.querySelectorAll('.info-block');
 
     for (var i = 0; i < allInfoBlocks.length; i++) {
    Array.prototype.forEach.call(events, function (event) {
      allInfoBlocks[i].style.display = 'none';
        var marker = document.createElement('div');
    }
        marker.style.position = 'absolute';
    infoBlock.style.display = 'block';
        marker.style.width = '10px';
  }
        marker.style.height = '10px';
}
        marker.style.backgroundColor = '#000';
        marker.style.borderRadius = '50%';
        marker.style.top = '50%';
        marker.style.transform = 'translate(-50%, -50%)';
        marker.style.left = event.style.left;
        container.appendChild(marker);
    });
})();

Текущая версия от 11:10, 18 января 2025

function toggleInfo(race) {
  var infoBlock = document.getElementById(race + '-info');
  if (infoBlock.style.display === 'block') {
    infoBlock.style.display = 'none';
  } else {
    var allInfoBlocks = document.querySelectorAll('.info-block');
    for (var i = 0; i < allInfoBlocks.length; i++) {
      allInfoBlocks[i].style.display = 'none';
    }
    infoBlock.style.display = 'block';
  }
}