Spaces:
Running
Running
File size: 1,480 Bytes
399c26a 8b37e01 399c26a d0b9f6c |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 |
// Show user registration page
function showUserRegister() {
fetch("/reset");
window.location.href = "userregister";
}
// メンバー選択画面表示
function showUserSelect() {
window.location.href = "/userselect";
}
// Show recorder page
function showRecorder() {
window.location.href = "index";
}
// Show results page
function showResults() {
window.location.href = "feedback";
}
// Show talk detail page
function showTalkDetail() {
window.location.href = "talk_detail";
}
// Reset action page
function resetAction() {
window.location.href = "reset_html";
}
// Toggle hamburger menu visibility
function toggleMenu(event) {
event.stopPropagation(); // Prevents click event from propagating to the document
const menu = document.getElementById("menu");
menu.classList.toggle("open");
}
// Close the menu if clicked outside
function closeMenu(event) {
const menu = document.getElementById("menu");
if (
menu.classList.contains("open") &&
!menu.contains(event.target) &&
!event.target.closest("#menuButton")
) {
menu.classList.remove("open");
}
}
// Add event listener for closing the menu when clicking outside
document.addEventListener("click", closeMenu);
// Show recorder page 名前に気を付けて!
document.getElementById("add-btn").addEventListener("click", showRecorder); |