403Webshell
Server IP : 66.29.146.62  /  Your IP : 216.73.216.2
Web Server : LiteSpeed
System : Linux premium231.web-hosting.com 4.18.0-553.45.1.lve.el8.x86_64 #1 SMP Wed Mar 26 12:08:09 UTC 2025 x86_64
User : dokkdzvi ( 925)
PHP Version : 8.1.33
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /home/dokkdzvi/smarteco-ksa.store/assets/js/js/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /home/dokkdzvi/smarteco-ksa.store/assets/js/js/1.html
<!DOCTYPE html>
<html lang="ar">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="Content-Security-Policy" content="default-src 'self'; script-src 'none'; style-src 'self' 'unsafe-inline';">
    <title>تأثيرات النص مع الصورة</title>
    <style>
        /* تعيين الخلفية */
        body {
            margin: 0;
            height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            position: relative;
            font-family: 'Roboto', sans-serif;
            overflow: hidden; /* منع التمرير */
            background-color: black;
            transition: background-position 0.1s ease; /* تأثير سلس لحركة الخلفية */
        }

        /* الخلفية المغبشة */
        body::after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('preview.gif');
            background-size: cover; /* لتغطية الخلفية بشكل كامل */
            background-position: center; /* لضمان تمركز الصورة */
            background-attachment: fixed; /* لمنع الخلفية من التحرك عند التمرير */
            filter: blur(8px); /* تطبيق التغبيش على الخلفية فقط */
            z-index: -1; /* التأكد من أن الخلفية تحت المحتوى */
        }

        /* المحتوى الذي يظهر فوق الخلفية المغبشة */
        .content {
            text-align: center;
            z-index: 1; /* وضع المحتوى فوق الخلفية المغبشة */
            color: white;
        }

        /* الصورة المتحركة */
        img {
            max-width: 80%; /* أقصى عرض للصورة */
            max-height: 50vh; /* أقصى ارتفاع للصورة */
        }

        /* اسم المستخدم - الاحترافي باستخدام الخط 𝒀𝑶𝑹𝑰𝑿 */
        .name {
            font-size: 80px; /* حجم النص أكبر ليتناسب مع الخط */
            font-family: 'Courier New', Courier, monospace; /* يمكن استخدام خط مخصص، مثل 'Cursive' أو أي خط من اختيارك */
            text-transform: uppercase; /* تحويل النص لأحرف كبيرة */
            letter-spacing: 4px; /* تباعد الحروف */
            color: black; /* تغيير لون النص إلى الأسود */
            padding: 0; /* إزالة أي حواف حول النص */
            text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5); /* إضافة تغبيش خفيف للنص */
            filter: blur(2px); /* تأثير التغبيش على النص */
            animation: blurEffect 3s ease-in-out infinite alternate; /* تأثير التغبيش */
        }

        @keyframes blurEffect {
            0% {
                filter: blur(2px); /* التغبيش الخفيف */
            }
            100% {
                filter: blur(0px); /* النص يصبح واضحًا */
            }
        }

        /* إذا كنت ترغب في استخدام الخط الخاص بـ𝒀𝑶𝑹𝑰𝑿 في النص يمكن وضعه كرموز يونيكود */
        .name span {
            font-family: 'Cursive', sans-serif;
        }

        /* منع النقر بزر الفأرة الأيمن */
        document.addEventListener("contextmenu", function(e) {
            e.preventDefault();
        });

        /* منع اختصارات لوحة المفاتيح مثل Ctrl+U أو F12 */
        document.addEventListener("keydown", function(e) {
            if ((e.ctrlKey && e.key === 'u') || e.key === 'F12' || e.key === 'F11') {
                e.preventDefault();
            }
        });
    </style>
</head>
<body>
    <div class="content">
        <!-- الصورة المتحركة التي ستظهر بوضوح أمام الاسم -->
        <img src="preview.gif" alt="صورة متحركة">
        <div class="name">
            <!-- كتابة النص 𝒀𝑶𝑹𝑰𝑿 باستخدام الرموز الخاصة -->
            <span>𝒀𝑶𝑹𝑰𝑿</span>
        </div>
    </div>

    <script>
        // حركة الخلفية بناءً على حركة الماوس
        document.body.addEventListener("mousemove", function(e) {
            var x = e.clientX;
            var y = e.clientY;

            // حساب الإزاحة بناءً على مكان الماوس
            var moveX = (x / window.innerWidth) * 50; // الإزاحة الأفقية
            var moveY = (y / window.innerHeight) * 50; // الإزاحة العمودية

            // تغيير موضع الخلفية بناءً على الإزاحة
            document.body.style.backgroundPosition = `${moveX}% ${moveY}%`;
        });

        // منع النقر بزر الفأرة الأيمن
        document.addEventListener("contextmenu", function(e) {
            e.preventDefault();
        });

        // منع اختصارات لوحة المفاتيح مثل Ctrl+U أو F12
        document.addEventListener("keydown", function(e) {
            if ((e.ctrlKey && e.key === 'u') || e.key === 'F12' || e.key === 'F11') {
                e.preventDefault();
            }
        });
    </script>
</body>
</html>

Youez - 2016 - github.com/yon3zu
LinuXploit