File size: 14,692 Bytes
68135fb | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Free Fire Training Panel</title>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<style>
.gradient-bg {
background: linear-gradient(135deg, #1e3a8a 0%, #7c3aed 100%);
}
.panel-glass {
background: rgba(255, 255, 255, 0.1);
backdrop-filter: blur(10px);
-webkit-backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.2);
}
.switch {
position: relative;
display: inline-block;
width: 60px;
height: 34px;
}
.switch input {
opacity: 0;
width: 0;
height: 0;
}
.slider {
position: absolute;
cursor: pointer;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: #ccc;
transition: .4s;
border-radius: 34px;
}
.slider:before {
position: absolute;
content: "";
height: 26px;
width: 26px;
left: 4px;
bottom: 4px;
background-color: white;
transition: .4s;
border-radius: 50%;
}
input:checked + .slider {
background-color: #3b82f6;
}
input:checked + .slider:before {
transform: translateX(26px);
}
.range-slider::-webkit-slider-thumb {
-webkit-appearance: none;
appearance: none;
width: 20px;
height: 20px;
background: #3b82f6;
cursor: pointer;
border-radius: 50%;
}
.range-slider::-moz-range-thumb {
width: 20px;
height: 20px;
background: #3b82f6;
cursor: pointer;
border-radius: 50%;
}
</style>
</head>
<body class="gradient-bg min-h-screen text-white font-sans">
<div class="container mx-auto px-4 py-8">
<!-- Header -->
<header class="flex justify-between items-center mb-8">
<div class="flex items-center">
<img src="https://via.placeholder.com/50" alt="Logo" class="w-12 h-12 rounded-full mr-3">
<div>
<h1 class="text-2xl font-bold">Free Fire Trainer</h1>
<p class="text-sm opacity-75">Improve your skills legitimately</p>
</div>
</div>
<div class="flex items-center space-x-3">
<button class="bg-blue-500 hover:bg-blue-600 px-4 py-2 rounded-full text-sm font-medium transition">
<i class="fas fa-user mr-1"></i> Profile
</button>
</div>
</header>
<!-- Main Panel -->
<div class="panel-glass rounded-2xl p-6 mb-8">
<div class="flex justify-between items-center mb-6">
<h2 class="text-xl font-bold">Training Configuration</h2>
<div class="flex items-center">
<span class="mr-2 text-sm">Active</span>
<label class="switch">
<input type="checkbox" checked>
<span class="slider"></span>
</label>
</div>
</div>
<!-- Sensitivity Controls -->
<div class="mb-6">
<h3 class="font-medium mb-3 flex items-center">
<i class="fas fa-bullseye mr-2 text-blue-400"></i> Sensitivity Settings
</h3>
<div class="space-y-4">
<div>
<div class="flex justify-between mb-1">
<span>General Sensitivity</span>
<span class="font-mono">85%</span>
</div>
<input type="range" min="0" max="100" value="85" class="w-full range-slider h-2 bg-gray-200 rounded-lg appearance-none cursor-pointer">
</div>
<div>
<div class="flex justify-between mb-1">
<span>ADS Sensitivity</span>
<span class="font-mono">75%</span>
</div>
<input type="range" min="0" max="100" value="75" class="w-full range-slider h-2 bg-gray-200 rounded-lg appearance-none cursor-pointer">
</div>
<div>
<div class="flex justify-between mb-1">
<span>Scoped Sensitivity</span>
<span class="font-mono">65%</span>
</div>
<input type="range" min="0" max="100" value="65" class="w-full range-slider h-2 bg-gray-200 rounded-lg appearance-none cursor-pointer">
</div>
</div>
</div>
<!-- Training Modes -->
<div class="mb-6">
<h3 class="font-medium mb-3 flex items-center">
<i class="fas fa-running mr-2 text-green-400"></i> Training Modes
</h3>
<div class="grid grid-cols-2 gap-3">
<button class="bg-blue-500 hover:bg-blue-600 py-3 px-4 rounded-xl text-sm font-medium transition flex items-center justify-center">
<i class="fas fa-crosshairs mr-2"></i> Headshot Practice
</button>
<button class="bg-purple-500 hover:bg-purple-600 py-3 px-4 rounded-xl text-sm font-medium transition flex items-center justify-center">
<i class="fas fa-bullseye mr-2"></i> Target Tracking
</button>
<button class="bg-green-500 hover:bg-green-600 py-3 px-4 rounded-xl text-sm font-medium transition flex items-center justify-center">
<i class="fas fa-fire mr-2"></i> Recoil Control
</button>
<button class="bg-yellow-500 hover:bg-yellow-600 py-3 px-4 rounded-xl text-sm font-medium transition flex items-center justify-center">
<i class="fas fa-arrows-alt mr-2"></i> Movement Drills
</button>
</div>
</div>
<!-- Advanced Settings -->
<div>
<h3 class="font-medium mb-3 flex items-center">
<i class="fas fa-cog mr-2 text-yellow-400"></i> Advanced Settings
</h3>
<div class="space-y-3">
<div class="flex justify-between items-center">
<span>Show Hit Markers</span>
<label class="switch">
<input type="checkbox" checked>
<span class="slider"></span>
</label>
</div>
<div class="flex justify-between items-center">
<span>Display Crosshair</span>
<label class="switch">
<input type="checkbox" checked>
<span class="slider"></span>
</label>
</div>
<div class="flex justify-between items-center">
<span>Recoil Visualization</span>
<label class="switch">
<input type="checkbox">
<span class="slider"></span>
</label>
</div>
<div class="flex justify-between items-center">
<span>Target Prediction</span>
<label class="switch">
<input type="checkbox">
<span class="slider"></span>
</label>
</div>
</div>
</div>
</div>
<!-- Stats Section -->
<div class="panel-glass rounded-2xl p-6 mb-8">
<h2 class="text-xl font-bold mb-4">Training Statistics</h2>
<div class="grid grid-cols-2 gap-4">
<div class="bg-blue-500/20 p-4 rounded-xl">
<div class="flex items-center justify-between">
<div>
<p class="text-sm opacity-75">Headshot Accuracy</p>
<p class="text-2xl font-bold">72%</p>
</div>
<i class="fas fa-crosshairs text-3xl opacity-30"></i>
</div>
<div class="mt-2 h-1 w-full bg-blue-500/30 rounded-full">
<div class="h-1 bg-blue-500 rounded-full" style="width: 72%"></div>
</div>
</div>
<div class="bg-green-500/20 p-4 rounded-xl">
<div class="flex items-center justify-between">
<div>
<p class="text-sm opacity-75">Kill Ratio</p>
<p class="text-2xl font-bold">3.2</p>
</div>
<i class="fas fa-skull text-3xl opacity-30"></i>
</div>
<div class="mt-2 h-1 w-full bg-green-500/30 rounded-full">
<div class="h-1 bg-green-500 rounded-full" style="width: 64%"></div>
</div>
</div>
<div class="bg-purple-500/20 p-4 rounded-xl">
<div class="flex items-center justify-between">
<div>
<p class="text-sm opacity-75">Avg. Damage</p>
<p class="text-2xl font-bold">1,240</p>
</div>
<i class="fas fa-bolt text-3xl opacity-30"></i>
</div>
<div class="mt-2 h-1 w-full bg-purple-500/30 rounded-full">
<div class="h-1 bg-purple-500 rounded-full" style="width: 82%"></div>
</div>
</div>
<div class="bg-yellow-500/20 p-4 rounded-xl">
<div class="flex items-center justify-between">
<div>
<p class="text-sm opacity-75">Survival Time</p>
<p class="text-2xl font-bold">14:32</p>
</div>
<i class="fas fa-clock text-3xl opacity-30"></i>
</div>
<div class="mt-2 h-1 w-full bg-yellow-500/30 rounded-full">
<div class="h-1 bg-yellow-500 rounded-full" style="width: 58%"></div>
</div>
</div>
</div>
</div>
<!-- Quick Start -->
<div class="panel-glass rounded-2xl p-6">
<h2 class="text-xl font-bold mb-4">Quick Start Training</h2>
<div class="grid grid-cols-1 md:grid-cols-3 gap-4">
<button class="bg-blue-600 hover:bg-blue-700 py-4 px-6 rounded-xl font-medium transition flex flex-col items-center">
<i class="fas fa-crosshairs text-2xl mb-2"></i>
<span>Headshot Mastery</span>
<span class="text-xs opacity-75 mt-1">15 min session</span>
</button>
<button class="bg-purple-600 hover:bg-purple-700 py-4 px-6 rounded-xl font-medium transition flex flex-col items-center">
<i class="fas fa-bullseye text-2xl mb-2"></i>
<span>Recoil Control</span>
<span class="text-xs opacity-75 mt-1">10 min session</span>
</button>
<button class="bg-green-600 hover:bg-green-700 py-4 px-6 rounded-xl font-medium transition flex flex-col items-center">
<i class="fas fa-running text-2xl mb-2"></i>
<span>Movement Drills</span>
<span class="text-xs opacity-75 mt-1">12 min session</span>
</button>
</div>
</div>
<!-- Footer -->
<footer class="mt-8 text-center text-sm opacity-75">
<p>This is a training tool to help improve your Free Fire skills through legitimate practice.</p>
<p class="mt-1">Using cheats or hacks violates game terms of service and is strongly discouraged.</p>
</footer>
</div>
<script>
// Simple range value display update
document.querySelectorAll('.range-slider').forEach(slider => {
slider.addEventListener('input', function() {
const valueDisplay = this.nextElementSibling.querySelector('span');
if (valueDisplay) {
valueDisplay.textContent = this.value + '%';
}
});
});
// Toggle switches
document.querySelectorAll('.switch input').forEach(switchInput => {
switchInput.addEventListener('change', function() {
const panel = document.querySelector('.panel-glass');
if (this.checked) {
panel.classList.remove('opacity-75');
} else {
panel.classList.add('opacity-75');
}
});
});
// Training mode buttons
document.querySelectorAll('.grid button').forEach(button => {
button.addEventListener('click', function() {
alert('Starting training session: ' + this.textContent.trim());
});
});
</script>
<p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=Pnkj01/hii" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |