https://doxing.fun/

링크 · 2개 결과

페이지에서 식별된 외부 링크

링크텍스트
https://t.me/hebleedsTelegram
https://discord.com/users/225424344912756738Discord

JavaScript 변수 · 5개 결과

페이지의 창 개체에 로드된 전역 JavaScript 변수는 함수 외부에서 선언된 변수로, 현재 범위 내에서 코드의 어느 부분에서나 액세스할 수 있습니다

이름유형
onbeforetoggleobject
documentPictureInPictureobject
onscrollendobject
handleMouseMovefunction
resetVideosfunction

콘솔 로그 메시지 · 1개 결과

웹 콘솔에 기록된 메시지

유형카테고리로그
errornetwork
URL
https://doxing.fun/favicon.ico
텍스트
Failed to load resource: the server responded with a status of 404 ()

HTML

페이지의 원시 HTML 본문

<!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>