https://leet.cc/

已提交的 URL:
https://leet.cc/
報告完成時間:

連結 · 找到 1 個

從頁面中識別的傳出連結

連結Text
https://pmmp.ioPocketMine-MP

JavaScript 變數 · 找到 3 個

在頁面的視窗物件上載入的全域 JavaScript 變數是在函數外部宣告的變數,可從目前範圍內程式碼中的任何位置存取

名稱類型
onbeforetoggleobject
documentPictureInPictureobject
onscrollendobject

主控台記錄訊息 · 找到 0 條

記錄到 Web 主控台的訊息

HTML

頁面的原始 HTML 主體

<!DOCTYPE html><html lang="en"><head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>LEET.CC Farewell</title>
    <link href="https://unpkg.com/@webpixels/[email protected]/dist/index.css" rel="stylesheet">
    <style>
        body, html {
            height: 100%;
            margin: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: transparent;
            font-family: 'Arial', sans-serif;
            color: white;            
        }

        html {
            background-image: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)), url('./thirstySheep.jpg');
            background-size: cover;
            background-position: center;
        }

        .container {
            
            text-align: center;
        }

        .logo {
            max-width: 200px;
            margin-bottom: 20px;
        }

        h1 {
            color: #0c6c85;
            font-size: 3rem;
            margin: 20px 0;
        }

        p {
            font-size: 1.2rem;
        }

        .highlight {
            color: #00ccff;
        }

        .footer {
            margin-top: 30px;
            font-size: 0.9rem;
        }

        .heart {
            color: #ff0033;
        }

    </style>
</head>

<body>
    <div class="container" style="opacity: 1; transition: opacity 2s ease 0s;">
        <img class="logo" src="./logov2-white.png" alt="LEET.CC Logo">
        <h1>Farewell from <span class="highlight">LEET.CC</span></h1>
        <p>We are saddened to announce that <span class="highlight">LEET.CC</span> has officially shut down.</p>
        <p>Thank you to all our amazing users for being part of this journey.</p>
        <p>Want to start your own PocketMine journey? Check out <a class="highlight" href="https://pmmp.io">PocketMine-MP</a> now!</p>

        <div class="footer">
            <p>We hope to meet you again in the future. Until then, happy crafting! <span class="heart">♥</span></p>
        </div>
    </div>

    <script>
        document.addEventListener('DOMContentLoaded', function() {
            document.querySelector('.container').style.opacity = 0;
            setTimeout(function() {
                document.querySelector('.container').style.transition = 'opacity 2s';
                document.querySelector('.container').style.opacity = 1;
            }, 500);
        });
    </script>



</body></html>