https://only-fans.me/Ayo

Submitted URL:
https://only-fans.me/Ayo
Report Finished:

The outgoing links identified from the page

JavaScript Variables · 9 found

Global JavaScript variables loaded on the window object of a page, are variables declared outside of functions and accessible from anywhere in the code within the current scope

NameType
onbeforetogglestring
documentPictureInPicturestring
onscrollendstring
gtagstring
dataLayerstring
google_tag_managerstring
google_tag_datastring
onYouTubeIframeAPIReadystring
gaGlobalstring

Console log messages · 0 found

Messages logged to the web console

HTML

The raw HTML body of the page

<!DOCTYPE html><html><head>
    <meta name="google-adsense-account" content="ca-pub-2622139465784498">
    <script async="" src="https://www.googletagmanager.com/gtag/js?id=G-6GQGEDZV49"></script>
    <script>
      window.dataLayer = window.dataLayer || [];
      function gtag(){dataLayer.push(arguments);}
      gtag('js', new Date());

      gtag('config', 'G-6GQGEDZV49');
    </script>
    
    <title>OnlyFans</title>
    <link rel="icon" type="image/png" href="OnlyFans.png">
    <style>
        body {
            margin: 0;
            padding: 0;
            height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            background-color: #000;
            color: #fff;
            font-family: "Anton", Arial, sans-serif;
        }
        .loading-container {
            display: flex;
            align-items: center;
            justify-content: center;
            height: 100vh;
            width: 100%;
            position: absolute;
            top: 0;
            left: 0;
            background-color: rgba(0, 0, 0, 0.8);
            z-index: 9999;
        }
        #loading-image {
            width: 400px;
            animation: pulse 2s ease-in-out infinite;
        }
        @keyframes pulse {
            0%, 100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.2);
            }
        }
        .content-box {
            padding: 80px;
            border: 2px solid #0080ff;
            box-shadow: 0 0 40px rgba(0, 128, 255, 0.4);
            border-radius: 20px;
            text-align: center;
            max-width: 80%;
            margin-bottom: 40px;
            display: inline-block;
            opacity: 0;
            visibility: hidden;
            transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
        }
        #age-question {
            font-size: 48px;
            margin-bottom: 20px;
            font-weight: bold;
        }
        #age-info {
            font-size: 18px;
            color: #888;
            text-align: center;
        }
        #enter-button {
            padding: 15px 30px;
            font-size: 20px;
            border: none;
            background-color: #1F1F1F;
            color: #fff;
            cursor: pointer;
            border-radius: 5px;
            margin-top: 25px;
        }
	#enter-button:hover {
    	    background-color: #333; /* Couleur l�g�rement plus claire au survol */
	}

    </style>
</head>
<body>
    <div class="loading-container">
        <img id="loading-image" src="only.png" alt="Loading...">
    </div>
    
    <div class="content-box" id="content-box">
        <div id="age-question">Are you 18?</div>
        <div id="age-info">
            We are a community that offers adult content.<br>
            You must be 18 or older to enter.
        </div>
        <button id="enter-button">I am 18 or older - Enter</button>
    </div>

    <script>
        document.addEventListener("DOMContentLoaded", function() {
            setTimeout(function() {
                document.querySelector('.loading-container').style.display = 'none';
                const contentBox = document.getElementById('content-box');
                contentBox.style.opacity = "1";
                contentBox.style.visibility = "visible";
            }, 1000);
            
            document.getElementById('enter-button').addEventListener('click', function() {
                // Vérifier si c'est un dispositif mobile
                const isMobile = /Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent);

                // Charger le fichier vidéo en fonction du dispositif
                const videoSource = isMobile ? 'https://duckduck.wstr.fr/tel.mp4' : 'https://duckduck.wstr.fr/aaa.mp4';

                document.body.innerHTML = `
                    <div id="video-container">
                        <video id="fullscreen-video" autoplay style="width: 100%; height: 100vh; object-fit: cover;">
                            <source src="${videoSource}" type="video/mp4">
                            Your browser does not support the video playback.
                        </video>
                    </div>
                `;
    
                const videoElement = document.getElementById('fullscreen-video');
    
                videoElement.addEventListener('canplay', function() {
                    videoElement.play();
                    if (videoElement.requestFullscreen) {
                        videoElement.requestFullscreen();
                        // Rediriger vers le site lorsque le mode plein écran est activé
                        videoElement.addEventListener('fullscreenchange', function() {
                            if (!document.fullscreenElement) {
                                window.location.href = 'https://only-fans.me/';
                            }
                        });
                    } else if (videoElement.mozRequestFullScreen) {
                        videoElement.mozRequestFullScreen();
                    } else if (videoElement.webkitRequestFullscreen) {
                        videoElement.webkitRequestFullscreen();
                    } else if (videoElement.msRequestFullscreen) {
                        videoElement.msRequestFullscreen();
                    }
                });
            });
        });
    </script>

</body></html>