0% found this document useful (0 votes)
18 views

Panel

Uploaded by

frailisan01
Copyright
© © All Rights Reserved
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
18 views

Panel

Uploaded by

frailisan01
Copyright
© © All Rights Reserved
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 3

<html>

<head>
<style>
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background-color: #121212;
color: #FFFFFF;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
margin: 0;
zoom: 2.5; /* Ajuste o zoom conforme necessário */
}
h1 {
margin-bottom: 20px;
color: #bb86fc;
text-shadow: 2px 2px 10px #6200ee;
font-size: 30px;
}
.menu {
background-color: #1f1f1f;
padding: 20px;
border-radius: 15px;
box-shadow: 0px 0px 15px rgba(186, 104, 200, 0.5);
width: 300px;
text-align: center;
}
.menu-item {
margin: 15px 0;
display: flex;
align-items: center;
justify-content: center;
}
.menu-item input[type="checkbox"] {
-webkit-appearance: none;
appearance: none;
background-color: #6200ee;
margin: 0;
width: 30px;
height: 30px;
border-radius: 5px;
cursor: pointer;
position: relative;
}
.menu-item input[type="checkbox"]::before {
content: '';
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 20px;
height: 20px;
background-color: transparent;
display: flex;
align-items: center;
justify-content: center;
font-size: 20px;
transition: background-color 0.3s ease;
}
.menu-item input[type="checkbox"]:checked::before {
content: '✅'; /* Emoji para indicar ativado */
background-color: #03dac6;
}
.menu-item input[type="checkbox"]:not(:checked)::before {
background-color: #6200ee;
}
.menu-item label {
margin-left: 15px;
font-size: 20px;
color: #bb86fc;
}
button {
background-color: #bb86fc;
color: #000000;
border: none;
padding: 12px 25px;
font-size: 18px;
cursor: pointer;
border-radius: 8px;
margin-top: 15px;
width: 100%;
box-shadow: 0px 5px 15px rgba(187, 134, 252, 0.5);
transition: background-color 0.3s ease;
}
button:hover {
background-color: #3700b3;
}
button:active {
transform: scale(0.98);
}
p#message {
margin-top: 20px;
font-size: 18px;
color: #bb86fc;
text-align: center;
}
</style>
</head>
<body>
<div class="menu">
<h1>auxilio dreyIOS</h1>
<div class="menu-item">
<input type="checkbox" id="option1" onclick="toggleFunction('Auxílio HS
98%')" />
<label for="option1">Auxílio HS 98%</label>
</label>
<input type="checkbox" id="Aimbot DRAG"
onclick="playSound(this);so98()">
<span class="slider"></span>
</div>
<div class="menu-item">
<input type="checkbox" id="option3" onclick="toggleFunction('Headtrick
sensi')" />
<label for="option3">Auxílio Sensi</label>
</div>
<button onclick="activateAll()">Ativar Tudo</button>
<button onclick="deactivateAll()">Desativar Tudo</button>
<p id="message"></p>
</div>
</label>
<input type="checkbox" id="Aimbot DRAG"
onclick="playSound(this);so98()">
<span class="slider"></span>
</div>
</label>
<input type="checkbox" id="Aimbot DRAG"
onclick="playSound(this);so98()">
<span class="slider"></span>
</div>
</label>
<script>
function toggleFunction(funcName) {
let checkbox = document.querySelector('#option' + funcName.split(' ')
[2]);
let status = checkbox.checked ? 'ativado ✅' : 'desativado';
document.getElementById("message").innerHTML = funcName + " " + status
+ "!";
}

function activateAll() {
let checkboxes = document.querySelectorAll('input[type="checkbox"]');
checkboxes.forEach(checkbox => {
checkbox.checked = true;
checkbox.style.backgroundColor = '#03dac6';
});
document.getElementById("message").innerHTML = "Todas as funções
ativadas!";
}

function deactivateAll() {
let checkboxes = document.querySelectorAll('input[type="checkbox"]');
checkboxes.forEach(checkbox => {
checkbox.checked = false;
checkbox.style.backgroundColor = '#6200ee';
});
document.getElementById("message").innerHTML = "Todas as funções
desativadas!";
}
</script>
</body>
</html>

You might also like