CÁCH 1:
<script type="text/javascript">var count = 555;
var redirect = "https://www.phuongblog.com";
function countDown(){
var timer = document.getElementById("timer");
if(count > 0){
count--;
timer.innerHTML = "Bạn sẽ được chuyển đến tên miền mới của SearchTools.top trong: <b>"+count+"</b> giây.";
setTimeout("countDown()", 1000);
}else{
window.location.href = redirect;
}
}
</script>
<style>
#full-page{
background:url()no-repeat top center,-webkit-gradient(radial,center 40%,0,center 40%,800,from(#fff),to(#fff));
text-align:center;
position:fixed;
top:0;
right:0;
bottom:0;
left:0;
padding-top:46px;
z-index:999999
}
</style>
<div class="" id="full-page">
<p id="timer"><script type="text/javascript">countDown();</script></p>
</div>
CÁCH 2:
<b style="margin:0;font-size:25px;">Bạn sẽ được chuyển sang trang chính trong: <div id="counter" style="display:inline-block;color:red">99</div> giây</b><script>
setInterval(function() {
var div = document.querySelector("#counter");
var count = div.textContent * 1 - 1;
div.textContent = count;
if (count <= 0) {
window.location.replace("//domainname.com");
}
}, 1000);
</script>
</body>
CÁCH 3:
<script type="text/javascript"><!--
function Redirect() {
window.location="http://www.searchtools.top/index.html";
}
document.write("You will be redirected to main page in 10 sec.");
setTimeout('Redirect()', 10000);
//-->
</script>