Yu-Gi-Oh! Deck Building and Card Inventory Management web interface written in Common Lisp, utilizing HTMX.
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

11 linhas
373B

  1. <script>
  2. $(document).ready(function() {
  3. // Check for click events on the navbar burger icon
  4. $(".navbar-burger").click(function() {
  5. // Toggle the "is-active" class on both the "navbar-burger" and the "navbar-menu"
  6. $(".navbar-burger").toggleClass("is-active");
  7. $(".navbar-menu").toggleClass("is-active");
  8. });
  9. });
  10. </script>