Belki sizede bir gün lazım olur
Aşağıdaki kodu index.html dosyası olarak kaydedin.
Kod:
<title>Siteniz.com</title>
<script language='JavaScript'>
var time = 8; //kaç saniye sonra yönlenecek
var page = "index.php"; //Asıl anasayfanız
function countDown(){
time--;
gett("container").innerHTML = time;
if(time == 0){
window.location = page;
}
}
function gett(id){
if(document.getElementById) return document.getElementById(id);
if(document.all) return document.all.id;
if(document.layers) return document.layers.id;
if(window.opera) return window.opera.id;
}
function init(){
if(gett('container')){
setInterval(countDown, 1000);
gett("container").innerHTML = time;
}
else{
setTimeout(init, 50);
}
}
document.onload = init();
</SCRIPT>
<body bgcolor="#A6242C">
<p align="center">
<a href="index.php" class="style1">
<span id='container'></span> saniye sonra ana sayfaya yönleneceksiniz. Reklamı geçmek için buraya tıklayın.</font></a></p>
</p><p align="center">
<img border="0" src="reklam.jpg" width="495" height="700"></p>