mirror of
https://github.com/abrendan/MicDropMessages.git
synced 2025-06-16 20:55:00 +02:00
V1.2! Updates visuals and new Dark Mode
This commit is contained in:
parent
3e126a3929
commit
c8e10cb345
@ -11,15 +11,15 @@
|
|||||||
<body onload = "onload()">
|
<body onload = "onload()">
|
||||||
<div id = "Main">
|
<div id = "Main">
|
||||||
<audio id = "Ding" src = "Ding.mp3"> </audio>
|
<audio id = "Ding" src = "Ding.mp3"> </audio>
|
||||||
<h1 id = "Title"> MicDropMessages V1.1 </h1>
|
<h1 id = "Title"> MicDropMessages V1.2 </h1>
|
||||||
<p>Welcome to MicDropMessages! This small webbased application allows you to chat with your friends anonymously! To start, enter your username and enter a chatroom.</p>
|
<p>Welcome to MicDropMessages! This small webbased application allows you to chat with your friends anonymously! To start, enter your username and enter a chatroom.</p>
|
||||||
<div id = "AccessPort">
|
<div id = "AccessPort">
|
||||||
<label id = "NameLabel"> Username </label>
|
<label id = "NameLabel"> Username </label>
|
||||||
<input id = "NameInput" type = "text">
|
<input id = "NameInput" class="input" type = "text">
|
||||||
<br><br>
|
<br><br>
|
||||||
<label id = "IDLabel"> Chatroom </label>
|
<label id = "IDLabel"> Chatroom </label>
|
||||||
<input id = "IDInput" value = "Room1" type = "text">
|
<input id = "IDInput" class="input" value = "Room1" type = "text">
|
||||||
<input id = "ConnectButton" class = "Button" type = "submit" value = "Connect" onclick = "Connect()">
|
<input id = "ConnectButton" class="button2" type = "submit" value = "Connect" onclick = "Connect()">
|
||||||
</div>
|
</div>
|
||||||
<h2 id = "RoomID"> Chatroom : None </h2>
|
<h2 id = "RoomID"> Chatroom : None </h2>
|
||||||
<div id = "Chat">
|
<div id = "Chat">
|
||||||
@ -34,11 +34,12 @@
|
|||||||
<p id = "Message8" class = "Message"> - </p>
|
<p id = "Message8" class = "Message"> - </p>
|
||||||
<p id = "Message9" class = "Message"> - </p>
|
<p id = "Message9" class = "Message"> - </p>
|
||||||
<label id = "MessageLabel"> Message </label>
|
<label id = "MessageLabel"> Message </label>
|
||||||
<input id = "ComposedMessage" type = "text">
|
<input id = "ComposedMessage" class="input" type = "text">
|
||||||
<input id = "SendMessage" onclick="Send()" value = "Send your message" class = "Button" type = "submit">
|
<input id = "SendMessage" onclick="Send()" value = "Send your message" class="button2" type = "submit">
|
||||||
</div>
|
</div>
|
||||||
<p>Made by abrendan. Visit my website for more of my projects.</p>
|
<p>Made by abrendan. Visit my website for more of my projects.</p>
|
||||||
<a href='https://abrendan.dev/' target="_blank" class="sitebutton">abrendan.dev</a>
|
<button id="darkModeToggle" onclick="toggleDarkMode()" class="button">Toggle Dark Mode</button>
|
||||||
|
<button onclick=" window.open('http://www.abrendan.dev','_blank')" class="button">abrendan.dev</button>
|
||||||
<br><br>
|
<br><br>
|
||||||
</div>
|
</div>
|
||||||
</body>
|
</body>
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
var socket;
|
var socket;
|
||||||
var usernameInput
|
var usernameInput;
|
||||||
var chatIDInput;
|
var chatIDInput;
|
||||||
var messageInput;
|
var messageInput;
|
||||||
var chatRoom;
|
var chatRoom;
|
||||||
@ -15,6 +15,13 @@ function onload(){
|
|||||||
chatRoom = document.getElementById("RoomID");
|
chatRoom = document.getElementById("RoomID");
|
||||||
dingSound = document.getElementById("Ding");
|
dingSound = document.getElementById("Ding");
|
||||||
|
|
||||||
|
// Event listener to send message when Enter key is pressed
|
||||||
|
messageInput.addEventListener("keyup", function(event) {
|
||||||
|
if (event.key === "Enter") { // Check if Enter was pressed
|
||||||
|
Send(); // Trigger send message
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
socket.on("join", function(room){
|
socket.on("join", function(room){
|
||||||
chatRoom.innerHTML = "Current Chatroom : " + room;
|
chatRoom.innerHTML = "Current Chatroom : " + room;
|
||||||
})
|
})
|
||||||
@ -30,7 +37,7 @@ function onload(){
|
|||||||
messages.shift();
|
messages.shift();
|
||||||
messages.push(message);
|
messages.push(message);
|
||||||
}
|
}
|
||||||
for (i = 0; i < messages.length; i++){
|
for (var i = 0; i < messages.length; i++){
|
||||||
document.getElementById("Message"+i).innerHTML = messages[i];
|
document.getElementById("Message"+i).innerHTML = messages[i];
|
||||||
document.getElementById("Message"+i).style.color = "#000000";
|
document.getElementById("Message"+i).style.color = "#000000";
|
||||||
}
|
}
|
||||||
@ -53,3 +60,7 @@ function Send(){
|
|||||||
function delayReset(){
|
function delayReset(){
|
||||||
delay = true;
|
delay = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function toggleDarkMode() {
|
||||||
|
document.body.classList.toggle('dark-mode');
|
||||||
|
}
|
@ -1,5 +1,5 @@
|
|||||||
body{
|
body{
|
||||||
background-image: url('https://i.ibb.co/zhPZBTt/luke-chesser-Cx-Bx-J3yp9g-unsplash.jpg'); /* Path to your example image */
|
background-image: url('https://images.unsplash.com/37/IHLjdHdzSvi0rgUMMlSK_TE3_0286.jpg'); /* Path to your example image */
|
||||||
background-size: cover; /* Cover the entire viewport */
|
background-size: cover; /* Cover the entire viewport */
|
||||||
background-repeat: no-repeat; /* Do not repeat the image */
|
background-repeat: no-repeat; /* Do not repeat the image */
|
||||||
background-attachment: fixed; /* The background image does not scroll */
|
background-attachment: fixed; /* The background image does not scroll */
|
||||||
@ -14,39 +14,75 @@ label{
|
|||||||
}
|
}
|
||||||
|
|
||||||
input{
|
input{
|
||||||
background: #000000;
|
background-color: rgba(255, 255, 255, 0.15);
|
||||||
color: #db65fb;
|
color: #000000;
|
||||||
font-size: 120%;
|
font-size: 120%;
|
||||||
border: none;
|
border: none;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.Message{
|
.Message{
|
||||||
color: #000000;
|
color: #000000;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#Main{
|
||||||
|
padding: 20px; /* Padding added to the main content area */
|
||||||
|
border-radius: 10px;
|
||||||
|
backdrop-filter: blur(5px); /* Provide a translucent frosted-glass effect */
|
||||||
|
background-color: rgba(255, 255, 255, 0.2); /* Slightly white transparent background */
|
||||||
|
}
|
||||||
|
|
||||||
#Title{
|
#Title{
|
||||||
font-size: 300%;
|
font-size: 300%;
|
||||||
}
|
}
|
||||||
|
|
||||||
.sitebutton {
|
.button {
|
||||||
background-color:transparent;
|
background-color:transparent;
|
||||||
border-radius:28px;
|
border-radius:28px;
|
||||||
border:1px solid #db65fb;
|
border:0px solid #000000;
|
||||||
display:inline-block;
|
display:inline-block;
|
||||||
cursor:pointer;
|
cursor:pointer;
|
||||||
color:#000000;
|
color:#000000;
|
||||||
font-family:Arial;
|
|
||||||
font-size:17px;
|
font-size:17px;
|
||||||
padding:16px 31px;
|
padding:16px 31px;
|
||||||
text-decoration:none;
|
text-decoration:none;
|
||||||
text-shadow:0px 1px 0px #000000;
|
text-shadow:0px 1px 0px #000000;
|
||||||
|
background-color: rgba(255, 255, 255, 0.2); /* Slightly white transparent background */
|
||||||
|
transition: background-color 0.3s ease; /* Transition for button hover effects */
|
||||||
}
|
}
|
||||||
.sitebutton:hover {
|
.button:hover {
|
||||||
background-color:transparent;
|
background-color:#000000;
|
||||||
|
color:#ffffff;
|
||||||
|
|
||||||
}
|
}
|
||||||
.sitebutton:active {
|
.button:active {
|
||||||
position:relative;
|
position:relative;
|
||||||
top:1px;
|
top:1px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Add this to your CSS to support dark mode */
|
||||||
|
body.dark-mode {
|
||||||
|
color: #ffffff; /* Light text color for contrast */
|
||||||
|
}
|
||||||
|
/* You might want to customize other elements for dark mode, for example: */
|
||||||
|
.dark-mode #Main {
|
||||||
|
background-color: #333; /* Dark background for main content area */
|
||||||
|
}
|
||||||
|
/* Additional elements can be customized as needed for dark mode... */
|
||||||
|
|
||||||
|
.input {
|
||||||
|
border-radius: 10px;
|
||||||
|
padding: 6px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.button2 {
|
||||||
|
border-radius: 10px;
|
||||||
|
padding: 6px;
|
||||||
|
transition: background-color 0.3s ease; /* Transition for button hover effects */
|
||||||
|
}
|
||||||
|
|
||||||
|
.button2:hover {
|
||||||
|
background-color:#000000;
|
||||||
|
color:#ffffff;
|
||||||
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user