gg-mouse / index.html
Pnkj01's picture
make a gg mouse pro headshot panel where it launched free fire max and it consists of real no Recoil with the Help of the screen - Initial Deployment
21d76d4 verified
Raw
History Blame Contribute Delete
18.4 kB
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>GG Mouse Pro - Free Fire Max Headshot 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>
/* Custom CSS for additional styling */
.gradient-bg {
background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}
.panel-glass {
background: rgba(15, 23, 42, 0.7);
backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.1);
}
.btn-glow:hover {
box-shadow: 0 0 15px rgba(59, 130, 246, 0.7);
}
.recoil-indicator {
transition: all 0.3s ease;
}
.progress-bar {
transition: width 0.5s ease;
}
@keyframes pulse {
0% { transform: scale(1); }
50% { transform: scale(1.05); }
100% { transform: scale(1); }
}
.pulse-animation {
animation: pulse 2s infinite;
}
</style>
</head>
<body class="gradient-bg min-h-screen text-white font-sans overflow-x-hidden">
<!-- Header Section -->
<header class="py-4 px-6 flex justify-between items-center border-b border-gray-700">
<div class="flex items-center space-x-2">
<img src="https://via.placeholder.com/40" alt="GG Mouse Logo" class="w-10 h-10 rounded-full">
<h1 class="text-xl font-bold bg-clip-text text-transparent bg-gradient-to-r from-blue-400 to-purple-600">
GG Mouse Pro
</h1>
</div>
<div class="flex items-center space-x-4">
<button class="px-4 py-2 bg-blue-600 rounded-md hover:bg-blue-700 transition">
<i class="fas fa-user mr-2"></i>Login
</button>
<button class="p-2 bg-gray-700 rounded-md hover:bg-gray-600 transition">
<i class="fas fa-cog"></i>
</button>
</div>
</header>
<!-- Main Content -->
<main class="container mx-auto px-4 py-8">
<div class="flex flex-col lg:flex-row gap-8">
<!-- Left Panel - Game Control -->
<div class="panel-glass rounded-xl p-6 lg:w-2/3">
<div class="flex justify-between items-center mb-6">
<h2 class="text-2xl font-bold">
<i class="fas fa-gamepad mr-2 text-blue-400"></i> Free Fire Max Headshot Panel
</h2>
<div class="flex items-center space-x-2">
<span class="px-3 py-1 bg-green-600 rounded-full text-xs font-semibold">
<i class="fas fa-circle mr-1"></i> Active
</span>
<span class="px-3 py-1 bg-blue-600 rounded-full text-xs font-semibold">
v3.2.1
</span>
</div>
</div>
<!-- Game Launch Section -->
<div class="mb-8">
<div class="flex flex-col sm:flex-row justify-between items-center mb-4">
<h3 class="text-xl font-semibold mb-2 sm:mb-0">
<i class="fas fa-rocket mr-2 text-yellow-400"></i> Launch Game
</h3>
<div class="flex space-x-2">
<button class="px-4 py-2 bg-green-600 rounded-md hover:bg-green-700 transition">
<i class="fas fa-play mr-2"></i>Start
</button>
<button class="px-4 py-2 bg-red-600 rounded-md hover:bg-red-700 transition">
<i class="fas fa-stop mr-2"></i>Stop
</button>
</div>
</div>
<div class="bg-gray-800 rounded-lg p-4 mb-4">
<div class="flex items-center justify-between mb-2">
<span class="font-medium">Game Status:</span>
<span class="px-2 py-1 bg-blue-500 rounded text-xs">Waiting for Free Fire Max</span>
</div>
<div class="w-full bg-gray-700 rounded-full h-2.5">
<div class="bg-blue-600 h-2.5 rounded-full progress-bar" style="width: 45%"></div>
</div>
</div>
</div>
<!-- No Recoil Control Section -->
<div class="mb-8">
<h3 class="text-xl font-semibold mb-4">
<i class="fas fa-bullseye mr-2 text-red-400"></i> No Recoil Control
</h3>
<div class="grid grid-cols-1 md:grid-cols-2 gap-4 mb-6">
<div class="bg-gray-800 rounded-lg p-4">
<div class="flex justify-between items-center mb-2">
<span class="font-medium">Recoil Compensation</span>
<label class="relative inline-flex items-center cursor-pointer">
<input type="checkbox" checked class="sr-only peer">
<div class="w-11 h-6 bg-gray-700 rounded-full peer peer-checked:after:translate-x-full peer-checked:after:border-white after:content-[''] after:absolute after:top-0.5 after:left-[2px] after:bg-white after:border-gray-300 after:border after:rounded-full after:h-5 after:w-5 after:transition-all peer-checked:bg-green-500"></div>
</label>
</div>
<p class="text-sm text-gray-400">Automatically compensates for weapon recoil patterns</p>
</div>
<div class="bg-gray-800 rounded-lg p-4">
<div class="flex justify-between items-center mb-2">
<span class="font-medium">Recoil Intensity</span>
<span class="text-blue-400 font-medium">Medium</span>
</div>
<input type="range" min="0" max="100" value="50" class="w-full h-2 bg-gray-700 rounded-lg appearance-none cursor-pointer">
</div>
</div>
<div class="bg-gray-800 rounded-lg p-4">
<div class="flex justify-between items-center mb-4">
<h4 class="font-medium">Recoil Simulation</h4>
<button id="testRecoilBtn" class="px-3 py-1 bg-purple-600 rounded text-sm hover:bg-purple-700 transition">
<i class="fas fa-bolt mr-1"></i> Test
</button>
</div>
<div class="relative h-32 bg-gray-900 rounded border border-gray-700 overflow-hidden">
<div id="recoilIndicator" class="absolute top-1/2 left-1/2 w-6 h-6 bg-red-500 rounded-full recoil-indicator transform -translate-x-1/2 -translate-y-1/2"></div>
<div class="absolute top-1/2 left-1/2 w-1 h-1 bg-white rounded-full transform -translate-x-1/2 -translate-y-1/2"></div>
</div>
</div>
</div>
<!-- Weapon Presets -->
<div>
<h3 class="text-xl font-semibold mb-4">
<i class="fas fa-gun mr-2 text-orange-400"></i> Weapon Presets
</h3>
<div class="grid grid-cols-2 sm:grid-cols-3 md:grid-cols-4 gap-3">
<div class="bg-gray-800 rounded-lg p-3 text-center cursor-pointer hover:bg-gray-700 transition border border-transparent hover:border-blue-500">
<div class="w-12 h-12 mx-auto mb-2 bg-gray-700 rounded-full flex items-center justify-center">
<i class="fas fa-gun text-xl"></i>
</div>
<span class="text-sm font-medium">AK47</span>
</div>
<div class="bg-gray-800 rounded-lg p-3 text-center cursor-pointer hover:bg-gray-700 transition border border-transparent hover:border-blue-500">
<div class="w-12 h-12 mx-auto mb-2 bg-gray-700 rounded-full flex items-center justify-center">
<i class="fas fa-gun text-xl"></i>
</div>
<span class="text-sm font-medium">M4A1</span>
</div>
<div class="bg-gray-800 rounded-lg p-3 text-center cursor-pointer hover:bg-gray-700 transition border border-blue-500">
<div class="w-12 h-12 mx-auto mb-2 bg-blue-600 rounded-full flex items-center justify-center">
<i class="fas fa-gun text-xl"></i>
</div>
<span class="text-sm font-medium">AWM</span>
</div>
<div class="bg-gray-800 rounded-lg p-3 text-center cursor-pointer hover:bg-gray-700 transition border border-transparent hover:border-blue-500">
<div class="w-12 h-12 mx-auto mb-2 bg-gray-700 rounded-full flex items-center justify-center">
<i class="fas fa-gun text-xl"></i>
</div>
<span class="text-sm font-medium">MP40</span>
</div>
</div>
</div>
</div>
<!-- Right Panel - Stats and Features -->
<div class="panel-glass rounded-xl p-6 lg:w-1/3">
<h2 class="text-2xl font-bold mb-6">
<i class="fas fa-chart-line mr-2 text-green-400"></i> Performance Stats
</h2>
<!-- Stats Cards -->
<div class="grid grid-cols-1 gap-4 mb-6">
<div class="bg-gray-800 rounded-lg p-4">
<div class="flex justify-between items-center mb-2">
<span class="font-medium">Headshot Accuracy</span>
<span class="text-green-400 font-bold">92%</span>
</div>
<div class="w-full bg-gray-700 rounded-full h-2.5">
<div class="bg-green-500 h-2.5 rounded-full" style="width: 92%"></div>
</div>
</div>
<div class="bg-gray-800 rounded-lg p-4">
<div class="flex justify-between items-center mb-2">
<span class="font-medium">Recoil Reduction</span>
<span class="text-blue-400 font-bold">85%</span>
</div>
<div class="w-full bg-gray-700 rounded-full h-2.5">
<div class="bg-blue-500 h-2.5 rounded-full" style="width: 85%"></div>
</div>
</div>
<div class="bg-gray-800 rounded-lg p-4">
<div class="flex justify-between items-center mb-2">
<span class="font-medium">Detection Risk</span>
<span class="text-yellow-400 font-bold">Low</span>
</div>
<div class="w-full bg-gray-700 rounded-full h-2.5">
<div class="bg-yellow-500 h-2.5 rounded-full" style="width: 15%"></div>
</div>
</div>
</div>
<!-- Features List -->
<div class="mb-6">
<h3 class="text-xl font-semibold mb-4">
<i class="fas fa-star mr-2 text-yellow-400"></i> Key Features
</h3>
<ul class="space-y-3">
<li class="flex items-start">
<i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i>
<span>Real-time no recoil adjustment based on screen analysis</span>
</li>
<li class="flex items-start">
<i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i>
<span>Weapon-specific presets for optimal performance</span>
</li>
<li class="flex items-start">
<i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i>
<span>Undetectable by anti-cheat systems</span>
</li>
<li class="flex items-start">
<i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i>
<span>Customizable sensitivity settings</span>
</li>
<li class="flex items-start">
<i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i>
<span>Automatic updates for new weapon patterns</span>
</li>
</ul>
</div>
<!-- Premium Button -->
<button class="w-full py-3 bg-gradient-to-r from-yellow-500 to-yellow-600 rounded-lg font-bold btn-glow hover:from-yellow-600 hover:to-yellow-700 transition-all pulse-animation">
<i class="fas fa-crown mr-2"></i> Upgrade to Premium
</button>
</div>
</div>
</main>
<!-- Footer -->
<footer class="border-t border-gray-700 py-6 px-6 text-center text-gray-400 text-sm">
<div class="container mx-auto">
<p>GG Mouse Pro is not affiliated with Garena or Free Fire. Use at your own risk.</p>
<div class="flex justify-center space-x-4 mt-3">
<a href="#" class="hover:text-white transition">Terms</a>
<a href="#" class="hover:text-white transition">Privacy</a>
<a href="#" class="hover:text-white transition">Support</a>
<a href="#" class="hover:text-white transition">Discord</a>
</div>
<p class="mt-3">© 2023 GG Mouse Pro. All rights reserved.</p>
</div>
</footer>
<script>
// Recoil simulation effect
document.getElementById('testRecoilBtn').addEventListener('click', function() {
const recoilIndicator = document.getElementById('recoilIndicator');
// Simulate recoil pattern
recoilIndicator.style.transform = 'translate(-50%, -50%) translate(0px, 0px)';
recoilIndicator.style.opacity = '1';
// Create recoil animation
let positions = [
{x: 5, y: -10},
{x: 8, y: -25},
{x: 12, y: -40},
{x: 15, y: -50},
{x: 10, y: -45},
{x: 5, y: -35},
{x: 0, y: -20},
{x: -5, y: -10},
{x: 0, y: 0}
];
let counter = 0;
const interval = setInterval(() => {
if (counter < positions.length) {
const pos = positions[counter];
recoilIndicator.style.transform = `translate(-50%, -50%) translate(${pos.x}px, ${pos.y}px)`;
counter++;
} else {
clearInterval(interval);
}
}, 100);
// Add muzzle flash effect
const flash = document.createElement('div');
flash.style.position = 'absolute';
flash.style.top = '50%';
flash.style.left = '50%';
flash.style.width = '20px';
flash.style.height = '20px';
flash.style.backgroundColor = 'rgba(255, 200, 0, 0.7)';
flash.style.borderRadius = '50%';
flash.style.transform = 'translate(-50%, -50%)';
flash.style.filter = 'blur(2px)';
flash.style.zIndex = '10';
recoilIndicator.parentElement.appendChild(flash);
setTimeout(() => {
flash.style.transition = 'all 0.2s ease';
flash.style.opacity = '0';
flash.style.transform = 'translate(-50%, -50%) scale(2)';
setTimeout(() => flash.remove(), 200);
}, 50);
});
// Simulate game launch progress
setInterval(() => {
const progressBar = document.querySelector('.progress-bar');
const currentWidth = parseInt(progressBar.style.width);
if (currentWidth < 100) {
progressBar.style.width = `${currentWidth + 5}%`;
if (currentWidth > 90) {
progressBar.classList.remove('bg-blue-600');
progressBar.classList.add('bg-green-500');
}
}
}, 1000);
</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/gg-mouse" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html>