File size: 1,156 Bytes
899d1e1
f88e88a
899d1e1
 
 
 
 
f88e88a
899d1e1
 
 
ae53ac4
899d1e1
 
f88e88a
1d818b8
899d1e1
 
0afeddc
899d1e1
 
 
 
 
 
 
 
 
 
 
 
0bcdffe
899d1e1
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
function playVideo(charName) {
    const videoPath = `https://gilbertclaus.pythonanywhere.com/video/${encodeURIComponent("Ark ReCode")}/${encodeURIComponent(charName)}.mp4`;

    const wrapper = document.getElementById("videoWrapper");
    wrapper.innerHTML = "";

    const video = document.createElement("video");
    video.src = videoPath;
    video.width = 360;
    video.controls = true;
    video.autoplay = true;
    video.volume = 0.05;
    video.style.marginTop = "20px";
    wrapper.appendChild(video);
}

function fetchData() {
    const input = document.getElementById("charName").value.trim();
    const charaBtns = document.querySelectorAll(".chara");

    if (input === "") {
        // Ambil status tombol pertama sebagai acuan
        const isHidden = charaBtns[0].style.display === "none" || charaBtns[0].style.display === "";

        // Toggle semua tombol
        charaBtns.forEach(btn => {
        btn.style.display = isHidden ? "inline-block" : "none";
        });
    } else {
        const name = document.getElementById("charName").value;
        alert(`Fungsi fetchData untuk karakter "${name}" belum diimplementasikan`);
    }
}