1painel
1painel
DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>MASTER CHEATS</title>
<style>
body {
margin: 0;
padding: 0;
font-family: Arial, sans-serif;
background-color: #1e1e1e;
color: #fff;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
position: relative;
}
#particles-js {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: -1;
}
.login-container, .main-panel {
width: 300px;
background-color: #2c2c2c;
border-radius: 12px;
padding: 20px;
box-shadow: 0 8px 16px rgba(0, 0, 0, 0.7);
transition: all 0.3s ease;
}
.loading-circle {
width: 30px;
height: 30px;
border: 4px solid #f3f3f3;
border-top: 4px solid #ff0000;
border-radius: 50%;
animation: spin 1s linear infinite;
margin: 10px auto;
display: none;
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
.toggle-switch {
position: relative;
width: 40px;
height: 20px;
background-color: #555;
border-radius: 20px;
cursor: pointer;
transition: background-color 0.3s;
}
.toggle-switch::before {
content: "";
position: absolute;
width: 18px;
height: 18px;
background-color: white;
border-radius: 50%;
top: 1px;
left: 1px;
transition: transform 0.3s;
}
.toggle-switch.active {
background-color: #ff0000;
}
.toggle-switch.active::before {
transform: translateX(20px);
}
.feature {
display: flex;
justify-content: space-between;
align-items: center;
margin: 8px 0;
}
.range-control {
width: 100%;
}
.login-container {
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
}
.login-container input {
background-color: #333;
color: white;
}
.login-container button {
background-color: #ff0000;
color: white;
cursor: pointer;
}
.login-container .remember-me {
margin: 5px 0 10px 0;
display: flex;
align-items: center;
font-size: 0.9em;
color: #bbb;
}
.notification {
position: fixed;
bottom: 170px;
left: 50%;
transform: translateX(-50%);
background-color: #ff0000;
color: white;
padding: 15px 30px;
border-radius: 8px;
font-size: 1.2em;
display: none;
animation: fadeInOut 3s forwards;
text-align: center;
}
@keyframes fadeInOut {
0% { opacity: 0; }
10% { opacity: 1; }
90% { opacity: 1; }
100% { opacity: 0; }
}
.welcome-message {
text-align: center;
font-size: 1.5em;
margin-top: 20px;
display: none;
}
.tabs {
display: flex;
justify-content: space-between;
margin-bottom: 20px;
}
.tab {
cursor: pointer;
padding: 10px;
background-color: #444;
border-radius: 8px 8px 0 0;
width: 48%;
text-align: center;
}
.tab.active {
background-color: #ff0000;
}
.tab-content {
display: none;
}
.tab-content.active {
display: block;
}
.sensi-options {
margin-top: 20px;
display: flex;
justify-content: space-between;
align-items: center;
}
.sensi-button {
background-color: #ff0000;
color: white;
border: none;
padding: 10px 15px;
border-radius: 4px;
cursor: pointer;
}
.sensi-button.active {
background-color: #ff0000;
}
.range-control {
width: 100%;
margin-top: 10px;
}
.range-label {
display: flex;
justify-content: space-between;
font-size: 0.9em;
}
.sensi-values {
margin-top: 20px;
font-size: 1.2em;
color: #ff0000;
}
</style>
</head>
<body>
<div id="particles-js"></div>
<div class="remember-me">
<input type="checkbox" id="remember-me"> Lembrar-me
</div>
<button onclick="authenticate()">Entrar</button>
</div>
<div class="tabs">
<div class="tab active" onclick="showTab('head')">HEAD</div>
<div class="tab" onclick="showTab('mira')">MIRA</div>
<div class="tab" onclick="showTab('sensi')">SENSI</div>
</div>
<div class="sensi-options">
<button class="sensi-button" onclick="generateSensiFF()">Gerar
Sensi FF</button>
</div>
</div>
</div>
</div>
<script src="https://cdn.jsdelivr.net/particles.js/2.0.0/particles.min.js"></
script> <!-- Biblioteca de partículas -->
<script>
particlesJS("particles-js", {
particles: {
number: {
value: 80,
density: {
enable: true,
value_area: 800
}
},
color: {
value: "#ff0000"
},
shape: {
type: "circle",
stroke: {
width: 0,
color: "#000000"
},
polygon: {
nb_sides: 5
}
},
opacity: {
value: 0.5,
random: true,
anim: {
enable: true,
speed: 1,
opacity_min: 0.1,
sync: false
}
},
size: {
value: 3,
random: true,
anim: {
enable: false,
speed: 4,
size_min: 0.1,
sync: false
}
},
line_linked: {
enable: true,
distance: 150,
color: "#ff0000",
opacity: 0.4,
width: 1
},
move: {
enable: true,
speed: 6,
direction: "none",
random: false,
straight: false,
out_mode: "out",
bounce: false,
attract: {
enable: false,
rotateX: 600,
rotateY: 1200
}
}
},
interactivity: {
detect_on: "canvas",
events: {
onhover: {
enable: true,
mode: "repulse"
},
onclick: {
enable: true,
mode: "push"
},
resize: true
},
modes: {
repulse: {
distance: 100,
duration: 0.4
},
push: {
particles_nb: 4
}
}
},
retina_detect: true
});
function authenticate() {
var username = document.getElementById("username").value;
var password = document.getElementById("password").value;
var loadingCircle = document.getElementById("loading-circle");
loadingCircle.style.display = "block";
setTimeout(function() {
loadingCircle.style.display = "none";
if (username === "1" && password === "1") {
showNotification("Bem-vindo, MASTER CHEATS!");
document.getElementById("login-container").style.display =
"none";
setTimeout(function() {
document.getElementById("welcome-message").style.display =
"block";
}, 500);
setTimeout(function() {
document.getElementById("welcome-message").style.display =
"none";
document.getElementById("main-panel").style.display =
"block";
}, 3000);
} else {
showNotification("Usuário ou senha inválidos!");
}
}, 2000);
}
function showNotification(message) {
var notification = document.getElementById("notification");
notification.textContent = message;
notification.style.display = "block";
setTimeout(function() {
notification.style.display = "none";
}, 3000);
}
function showTab(tabName) {
var tabContents = document.querySelectorAll(".tab-content");
tabContents.forEach(function(content) {
content.classList.remove("active");
});
document.getElementById(tabName).classList.add("active");
document.querySelector(".tab." + tabName).classList.add("active");
}
function updateSensiValue(value) {
document.getElementById("sensi-output").textContent = `Sensibilidade: $
{value}%`;
}
function generateSensiFF() {
var generalSensi = Math.floor(Math.random() * 201);
var redDotSensi = Math.floor(Math.random() * 201);
var twoX = Math.floor(Math.random() * 201);
var fourX = Math.floor(Math.random() * 201);
document.getElementById("sensi-values").innerHTML = `
<p>Geral: ${generalSensi}%</p>
<p>Ponto Vermelho: ${redDotSensi}%</p>
<p>2x: ${twoX}%</p>
<p>4x: ${fourX}%</p>
`;
}
</script>
</body>
</html>