Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

refactor: refactor ui & fix: volume buttons #18

Merged
merged 8 commits into from
Feb 7, 2024
Merged
Show file tree
Hide file tree
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions fxmanifest.lua
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ client_scripts {

server_script 'server/main.lua'

ui_page('html/ui.html')
ui_page "html/index.html"

files {
'html/ui.html',
'html/index.html',
'html/js/script.js',
'html/css/style.css',
'html/img/radio.png',
Expand Down
185 changes: 79 additions & 106 deletions html/css/style.css
Original file line number Diff line number Diff line change
@@ -1,163 +1,136 @@
@import url('https://fonts.googleapis.com/css?family=Fira+Code&display=swap');

body {
position: relative;
font-family: sans-serif;
overflow: hidden;
top: 0;
padding: 0;
margin: 0;
position: relative;
font-family: sans-serif;
overflow: hidden;
top: 0;
padding: 0;
margin: 0;
}

.container {
height: 100vh;
display:none;
#container {
height: 100vh;
display: none;
}

.radio-container {
position: absolute;
bottom: -56vh;
right: 15vh;
#radio-container {
position: absolute;
bottom: -56vh;
right: 15vh;
}

.radio {
width: 18vh;
-moz-user-select: -moz-none;
-khtml-user-select: none;
-webkit-user-select: none;
-o-user-select: none;
user-select: none;
width: 18vh;
-moz-user-select: -moz-none;
-khtml-user-select: none;
-webkit-user-select: none;
-o-user-select: none;
user-select: none;
}

#submit {
position: absolute;
width: 2.2vh;
height: 3.2vh;
bottom: 14vh;
left: 4.2vh;
border-radius: 5px;
transition: all 0.1s linear;
#submit,
#disconnect {
position: absolute;
width: 2.2vh;
height: 3.2vh;
bottom: 14vh;
border-radius: 5px;
transition: all 0.1s linear;
}

#submit:hover {
background: rgba(255, 255, 255, 0.25);
#submit {
left: 4.2vh;
}

#disconnect {
position: absolute;
width: 2.2vh;
height: 3.2vh;
bottom: 14vh;
right: 3.2vh;
border-radius: 5px;
transition: all 0.1s linear;
}

#disconnect:hover {
background: rgba(255, 255, 255, 0.25);
right: 3.2vh;
}

#volumeDown,
#volumeUp {
position: absolute;
width: 3.3vh;
height: 1.9vh;
bottom: 18vh;
right: 3.1vh;
border-radius: 5px;
transition: all 0.1s linear;
}

#volumeUp:hover {
background: rgba(255, 255, 255, 0.25);
bottom: 18vh;
}

#volumeDown {
position: absolute;
width: 3.3vh;
height: 1.9vh;
bottom: 18vh;
left: 4.0vh;
border-radius: 5px;
transition: all 0.1s linear;
right: 3.1vh;
}

#volumeDown:hover {
background: rgba(255, 255, 255, 0.25);
#volumeUp {
left: 4.0vh;
}

#increaseradiochannel {
position: absolute;
width: 3.3vh;
height: 1.9vh;
bottom: 30vh;
left: 0.0vh;
border-radius: 5px;
transition: all 0.1s linear;
#increaseradiochannel,
#decreaseradiochannel {
left: 0.0vh;
}

#increaseradiochannel:hover {
background: rgba(255, 255, 255, 0.25);
#increaseradiochannel {
bottom: 30vh;
}

#decreaseradiochannel {
position: absolute;
width: 3.3vh;
height: 1.9vh;
bottom: 18vh;
left: 0.0vh;
border-radius: 5px;
transition: all 0.1s linear;
bottom: 18vh;
}

#decreaseradiochannel:hover {
background: rgba(255, 255, 255, 0.25);
#volumeDown,
#volumeUp,
#increaseradiochannel,
#decreaseradiochannel,
#poweredOff {
position: absolute;
width: 3.3vh;
height: 1.9vh;
border-radius: 5px;
transition: all 0.1s linear;
}

#poweredOff {
position: absolute;
width: 3.3vh;
height: 2.9vh;
bottom: 50vh;
left: 0.0vh;
border-radius: 5px;
transition: all 0.1s linear;
bottom: 50vh;
left: 0.0vh;
}

#poweredOff:hover {
background: rgba(255, 255, 255, 0.25);
#volumeUp:hover,
#volumeDown:hover,
#disconnect:hover,
#submit:hover,
#poweredOff:hover,
#decreaseradiochannel:hover,
#increaseradiochannel:hover {
background: rgba(255, 255, 255, 0.25);
}

.onoff button {
padding: 40px 55px;
opacity: .0;
padding: 40px 55px;
opacity: .0;
}

.channel {
position: absolute;
bottom: 24vh;
left: 5.3vh;
background: none;
position: absolute;
bottom: 24vh;
left: 5.3vh;
background: none;
}

::-webkit-input-placeholder {
color: rgba(0, 0, 0, 0.5);
color: rgba(0, 0, 0, 0.5);
}

.channel span {
text-align: center;
color: rgba(0, 0, 0, 0.75);
text-align: center;
color: rgba(0, 0, 0, 0.75);
}

.channel input {
text-align: center;
border: none;
font-size: 25px;
background: none;
outline: none;
font-family: 'Fira Code', monospace;
width: 5vw;
text-align: center;
border: none;
font-size: 25px;
background: none;
outline: none;
font-family: 'Fira Code', monospace;
width: 5vw;
}

::-webkit-inner-spin-button {
display: none;
}
display: none;
}
17 changes: 8 additions & 9 deletions html/ui.html → html/index.html
Original file line number Diff line number Diff line change
@@ -1,26 +1,25 @@
<!doctype HTML>
<html>
<head>
<script src="nui://game/ui/jquery.js" type="text/javascript"></script>
<link rel="stylesheet" href="css/style.css">
<script src="js/script.js" type="text/javascript"></script>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div class="container">
<div class="radio-container">
<div id="container">
<div id="radio-container">
<img src="./img/radio.png" alt="" class="radio">

<div class="channel">
<input id="channel" type="number" name="channel" min="1" max="500" placeholder="1-500">
</div>
<div id="submit"></div>
<div id="disconnect"></div>
<div id="volumeDown"></div>
<div id="volumeUp"></div>
<div id="increaseradiochannel"></div>
<div id="volumeUp"></div>
<div id="volumeDown"></div>
<div id="increaseradiochannel"></div>
<div id="decreaseradiochannel"></div>
<div id="poweredOff"></div>
<div id="poweredOff"></div>
</div>
</div>
<script src="js/script.js" type="text/javascript"></script>
</body>
</html>
Loading
Loading