Тест:СМ: различия между версиями

Материал из Space Stories Wiki
Нет описания правки
Нет описания правки
Строка 74: Строка 74:
     </div>
     </div>
</div>
</div>
<script>
document.addEventListener("DOMContentLoaded", function() {
    var headers = document.querySelectorAll("h3");
    headers.forEach(function(header) {
        header.style.cursor = "pointer";
        header.addEventListener("click", function() {
            var nextElement = header.nextElementSibling;
            if (nextElement.style.display === "none") {
                nextElement.style.display = "block";
            } else {
                nextElement.style.display = "none";
            }
        });
    });
});
document.addEventListener('DOMContentLoaded', function() {
    const buttons = document.querySelectorAll('.custom-button');
    buttons.forEach(button => {
        button.addEventListener('click', function() {
            this.classList.toggle('button-active');
        });
    });
});
</script>

Версия от 07:56, 26 августа 2024

Добро пожаловать на официальную вики страницу Space Stories Colonials Marines по игре Space Station 14

<script> document.addEventListener("DOMContentLoaded", function() {

   var headers = document.querySelectorAll("h3");
   headers.forEach(function(header) {
       header.style.cursor = "pointer";
       header.addEventListener("click", function() {
           var nextElement = header.nextElementSibling;
           if (nextElement.style.display === "none") {
               nextElement.style.display = "block";
           } else {
               nextElement.style.display = "none";
           }
       });
   });

});

document.addEventListener('DOMContentLoaded', function() {

   const buttons = document.querySelectorAll('.custom-button');
   buttons.forEach(button => {
       button.addEventListener('click', function() {
           this.classList.toggle('button-active');
       });
   });

}); </script>