• 10-04-2023, 00:07:32
    #1
    Yakında yayındayiz tariznda bir script arıyorum ücretsiz indirme linki varsa direk buradan bırakabilir siniz veyatta wp den dosyayı atabilir siniz ücretli için yazmayın lütfen
  • 10-04-2023, 00:11:21
    #2
    Kimlik doğrulama veya yönetimden onay bekliyor.
    https://www.r10.net/1084722880-post9.html
  • 10-04-2023, 00:18:32
    #3
    bu ney hocam ?
  • 10-04-2023, 00:25:18
    #4
    nordmedya adlı üyeden alıntı: mesajı görüntüle
    bu ney hocam ?
    Yakında yayındayız script istemediniz mi?
  • 10-04-2023, 00:29:09
    #5
    adwerd0z1 adlı üyeden alıntı: mesajı görüntüle
    Yakında yayındayız script istemediniz mi?
    evet de linke tikladigim da SEO satışı yapan bir konuya gönderiyor beni
  • 10-04-2023, 00:31:27
    #6
    nordmedya adlı üyeden alıntı: mesajı görüntüle
    evet de linke tikladigim da SEO satışı yapan bir konuya gönderiyor beni
    Doğrudan koda yönlendirmesi lazım, garip.
    Burada paylaşayım editleyerek belki işinize yarar

    <!DOCTYPE html>
    
    <html>
    
    <head>
    
        <title>Çok Yakında</title>
    
        <style>
    
            body {
    
                background-image: url("https://wallpaperaccess.com/full/6860094.png");
    
                background-size: cover;
    
                background-position: center center;
    
                background-repeat: no-repeat;
    
                background-attachment: fixed;
    
                font-family: Arial, sans-serif;
    
                color: #fff;
    
                text-align: center;
    
                padding-top: 50px;
    
            }
    
            
    
            h1 {
    
                font-size: 48px;
    
                margin-bottom: 0;
    
                text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
    
            }
    
            
    
            p {
    
                font-size: 24px;
    
                margin-top: 10px;
    
                text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
    
            }
    
            
    
            #countdown {
    
                font-size: 72px;
    
                font-weight: bold;
    
                margin-top: 50px;
    
            }
    
            
    
            #countdown label {
    
                font-size: 24px;
    
                font-weight: normal;
    
                margin-top: -20px;
    
            }
    
            
    
            #message {
    
                font-size: 18px;
    
                margin-top: 50px;
    
                border-top: 1px solid #fff;
    
                padding-top: 20px;
    
            }
    
            
    
            #email {
    
                font-size: 16px;
    
                margin-top: 20px;
    
            }
    
            
    
            #email a {
    
                color: #fff;
    
                text-decoration: none;
    
                font-weight: bold;
    
                text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
    
            }
    
            
    
            #email a:hover {
    
                color: #eee;
    
                text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
    
            }
    
        </style>
    
        <script>
    
            var countDownDate = new Date("Mar 31, 2023 12:00:00").getTime();
    
    
    
            var x = setInterval(function() {
    
                var now = new Date().getTime();
    
                var distance = countDownDate - now;
    
    
    
                var days = Math.floor(distance / (1000 * 60 * 60 * 24));
    
                var hours = Math.floor((distance % (1000 * 60 * 60 * 24)) / (1000 * 60 * 60));
    
                var minutes = Math.floor((distance % (1000 * 60 * 60)) / (1000 * 60));
    
                var seconds = Math.floor((distance % (1000 * 60)) / 1000);
    
    
    
                document.getElementById("countdown").innerHTML = days + " gün " + hours + " saat "
    
                + minutes + " dakika " + seconds + " saniye";
    
    
    
                if (distance < 0) {
    
                    clearInterval(x);
    
                    document.getElementById("countdown").innerHTML = "SAYACINIZ DOLDU!";
    
                }
    
            }, 1000);
    
        </script>
    
    </head>
    
    <body>
    
        <h1>Çok Yakında</h1>
    
        <div id="countdown"></div>
    
        <p id="message">Sitemiz yakında yenilenecek, bizimle kalın!</p>
    
        <div id="email">
    
            <p>E-posta ile güncellemeleri almak isterseniz:</p>
    
            <a href="mailto:info@example.com">info@example.com</a>
    
        </div>
    
    </body>
    
    </html>
  • 10-04-2023, 00:38:38
    #7
    adwerd0z1 adlı üyeden alıntı: mesajı görüntüle
    Doğrudan koda yönlendirmesi lazım, garip.
    Burada paylaşayım editleyerek belki işinize yarar

    <!DOCTYPE html>
    
    <html>
    
    <head>
    
        <title>Çok Yakında</title>
    
        <style>
    
            body {
    
                background-image: url("https://wallpaperaccess.com/full/6860094.png");
    
                background-size: cover;
    
                background-position: center center;
    
                background-repeat: no-repeat;
    
                background-attachment: fixed;
    
                font-family: Arial, sans-serif;
    
                color: #fff;
    
                text-align: center;
    
                padding-top: 50px;
    
            }
    
            
    
            h1 {
    
                font-size: 48px;
    
                margin-bottom: 0;
    
                text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
    
            }
    
            
    
            p {
    
                font-size: 24px;
    
                margin-top: 10px;
    
                text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
    
            }
    
            
    
            #countdown {
    
                font-size: 72px;
    
                font-weight: bold;
    
                margin-top: 50px;
    
            }
    
            
    
            #countdown label {
    
                font-size: 24px;
    
                font-weight: normal;
    
                margin-top: -20px;
    
            }
    
            
    
            #message {
    
                font-size: 18px;
    
                margin-top: 50px;
    
                border-top: 1px solid #fff;
    
                padding-top: 20px;
    
            }
    
            
    
            #email {
    
                font-size: 16px;
    
                margin-top: 20px;
    
            }
    
            
    
            #email a {
    
                color: #fff;
    
                text-decoration: none;
    
                font-weight: bold;
    
                text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
    
            }
    
            
    
            #email a:hover {
    
                color: #eee;
    
                text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
    
            }
    
        </style>
    
        <script>
    
            var countDownDate = new Date("Mar 31, 2023 12:00:00").getTime();
    
    
    
            var x = setInterval(function() {
    
                var now = new Date().getTime();
    
                var distance = countDownDate - now;
    
    
    
                var days = Math.floor(distance / (1000 * 60 * 60 * 24));
    
                var hours = Math.floor((distance % (1000 * 60 * 60 * 24)) / (1000 * 60 * 60));
    
                var minutes = Math.floor((distance % (1000 * 60 * 60)) / (1000 * 60));
    
                var seconds = Math.floor((distance % (1000 * 60)) / 1000);
    
    
    
                document.getElementById("countdown").innerHTML = days + " gün " + hours + " saat "
    
                + minutes + " dakika " + seconds + " saniye";
    
    
    
                if (distance < 0) {
    
                    clearInterval(x);
    
                    document.getElementById("countdown").innerHTML = "SAYACINIZ DOLDU!";
    
                }
    
            }, 1000);
    
        </script>
    
    </head>
    
    <body>
    
        <h1>Çok Yakında</h1>
    
        <div id="countdown"></div>
    
        <p id="message">Sitemiz yakında yenilenecek, bizimle kalın!</p>
    
        <div id="email">
    
            <p>E-posta ile güncellemeleri almak isterseniz:</p>
    
            <a href="mailto:info@example.com">info@example.com</a>
    
        </div>
    
    </body>
    
    </html>
    gördüm hocam forum bug a girdi galiba gerçekten çok hoş bir sc olmuş editleyip kullanacağım çok teşekkür ederim