https://doxing.fun/

Eingereichte URL:
https://doxing.fun/
Bericht beendet:

Die von der Seite ausgehenden identifizierten Links

LinkText
https://t.me/hebleedsTelegram
https://discord.com/users/225424344912756738Discord

JavaScript-Variablen · 5 gefunden

Globale JavaScript-Variablen, die in das Window Object einer Seite geladen werden, sind Variablen, die außerhalb von Funktionen deklariert werden und von jeder Stelle des Codes innerhalb des aktuellen Bereichs zugänglich sind

NameTyp
onbeforetoggleobject
documentPictureInPictureobject
onscrollendobject
handleMouseMovefunction
resetVideosfunction

Konsolenprotokoll-Meldungen · 1 gefunden

In der Web-Konsole protokollierte Meldungen

TypKategorieProtokoll
errornetwork
URL
https://doxing.fun/favicon.ico
Text
Failed to load resource: the server responded with a status of 404 ()

HTML

Der HTML-Rohtext der Seite

<!DOCTYPE html><html lang="en"><head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>@Robio runs this | Get Doxxed</title>
    <link rel="stylesheet" href="style.css">
</head>
<body>
    <header>
        <div class="logo">
            <span class="white-text">Doxing</span><span class="red-dot">.</span><span class="white-text">Fun</span>
        </div>
        <nav>
            <a href="https://t.me/hebleeds" target="_blank">Telegram</a>
            <a href="https://discord.com/users/225424344912756738" target="_blank">Discord</a>
            <a href="admin_page.html" class="button" target="_blank">Admins</a>
        </nav>
    </header>
    <main>
        <div class="video-container">
            <video controls="" onmousemove="handleMouseMove(event, this)" onmouseleave="resetVideos()">
                <source src="video/video1.mp4" type="video/mp4">
                Your browser does not support the video tag.
            </video>
            <video controls="" onmousemove="handleMouseMove(event, this)" onmouseleave="resetVideos()">
                <source src="video/video2.mp4" type="video/mp4">
                Your browser does not support the video tag.
            </video>
            <video controls="" onmousemove="handleMouseMove(event, this)" onmouseleave="resetVideos()">
                <source src="video/video3.mp4" type="video/mp4">
                Your browser does not support the video tag.
            </video>
        </div>
    </main>
    <footer>
        <p>All Rights Reserved © Doxing.fun 2024</p>
    </footer>

    <!-- Cursor Effect Container -->
    <div id="cursor-effect"></div>

    <script>
        // Custom Cursor Effect
        const cursorEffect = document.getElementById("cursor-effect");
        document.addEventListener("mousemove", (e) => {
            const x = e.clientX;
            const y = e.clientY;

            // Position the effect element at the mouse location
            cursorEffect.style.left = `${x}px`;
            cursorEffect.style.top = `${y}px`;
        });

        // Function to handle mouse movement and apply transformations
        function handleMouseMove(event, element) {
            const rect = element.getBoundingClientRect();
            const x = ((event.clientX - rect.left) / rect.width) * 2 - 1; // Normalize X (-1 to 1)
            const y = ((event.clientY - rect.top) / rect.height) * 2 - 1; // Normalize Y (-1 to 1)

            // Stronger tilt for the hovered video
            const rotateX = y * 20;
            const rotateY = x * -20;

            // Apply rotation and scale to the hovered video
            element.style.transform = `rotateX(${rotateX}deg) rotateY(${rotateY}deg) scale(1.1)`;

            // Scale down the other videos
            const allVideos = document.querySelectorAll('.video-container video');
            allVideos.forEach(video => {
                if (video !== element) {
                    video.style.transform = 'scale(0.9)';
                    video.style.transition = 'transform 0.3s ease'; // Smooth transition
                }
            });
        }

        // Function to reset all videos to their original state
        function resetVideos() {
            const allVideos = document.querySelectorAll('.video-container video');
            allVideos.forEach(video => {
                video.style.transform = 'rotateX(0deg) rotateY(0deg) scale(1)';
                video.style.transition = 'transform 0.3s ease'; // Smooth transition back
            });
        }
    </script>


</body></html>