summaryrefslogtreecommitdiff
path: root/cats.html
diff options
context:
space:
mode:
authorAlmightyMiau <almightymeow612@gmail.com>2025-06-05 15:46:50 -0700
committerAlmightyMiau <almightymeow612@gmail.com>2025-06-05 15:46:50 -0700
commit2d18d76e9a0f081a760e3a00e46659d793ceebd6 (patch)
tree34b211780ff8a0d37ed670a1abf07c6905d449ef /cats.html
parent9d4e0ecb4437165b4851ed628562b69819d3bf47 (diff)
CBox chat box on the aside 6/5/2025
Diffstat (limited to 'cats.html')
-rw-r--r--cats.html16
1 files changed, 14 insertions, 2 deletions
diff --git a/cats.html b/cats.html
index 0d4d353..84a0618 100644
--- a/cats.html
+++ b/cats.html
@@ -27,6 +27,14 @@
document.getElementById("buttons").style.display = "none";
}
}
+ function hideChat() {
+ let status = document.getElementById("chatbox").style.display;
+ if (status === "none") {
+ document.getElementById("chatbox").style.display = "block";
+ } else {
+ document.getElementById("chatbox").style.display = "none";
+ }
+ }
</script>
</head>
@@ -45,7 +53,7 @@
</div>
</main>
<aside>
- <div class="sidebar-title">&nbsp; Pages <button onclick="hidePages()">&vArr;</button></div>
+ <div class="sidebar-title">&nbsp; Pages <button onclick="hideID('pages')">&vArr;</button></div>
<div id="pages">
<nav id="nav">
<ul>
@@ -70,7 +78,7 @@
</ul>
</nav>
</div>
- <div class="sidebar-title">&nbsp; Buttons <button onclick="hideBut()">&vArr;</button></div>
+ <div class="sidebar-title" id="buttonsHeader">&nbsp; Buttons <button onclick="hideID('buttons')">&vArr;</button></div>
<div id="buttons">
<nav id="nav">
<div style="width: 88px; margin:0 auto;" id="buttons">
@@ -95,6 +103,10 @@
<br>
</nav>
</div>
+ <div class="sidebar-title" id="chatboxHeader">&nbsp; Le chat <button onclick="hideID('chatbox')">&vArr;</button></div>
+ <div id="chatbox">
+ <iframe src="https://www3.cbox.ws/box/?boxid=3547087&boxtag=ltfetV" width="100%" height="450" allowtransparency="yes" allow="autoplay" frameborder="0" marginheight="0" marginwidth="0" scrolling="auto"></iframe>
+ </div>
</aside>
</div>
<footer id="footer">&#916; Copyworng :3</footer>