Thứ Ba, 24 tháng 7, 2012

How To Add Count Down Redirect Script to Blogger


Hi Guys, Bây giờ tôi sẽ dạy cho bạn Làm thế nào để Thêm Count Down Chuyển Script Blogger.Let 'xem Làm thế nào để có được này!

Follow The Below Steps
  1. Login to your blogger Dashboard and go to Design --> Page Elements.
  2. Click on 'Add a Gadget' on the sidebar.
  3. Select 'HTML/Javascript' and add the code given below and click save.

<form name="redirect">
<center>
<font face="Arial"><b>You will be redirected to the script in<br><br>
<form>
<input type="text" size="3" name="redirect2">
</form>
seconds</b></font>
</center>

<script>

var targetURL="http://www.bloggertricksandtools.com/"
var countdownfrom=10

var currentsecond=document.redirect.redirect2.value=countdownfrom+1
function countredirect(){
if (currentsecond!=1){
currentsecond-=1
document.redirect.redirect2.value=currentsecond
}
else{
window.location=targetURL
return
}
setTimeout("countredirect()",1000)
}

countredirect()
//-->
</script>
Note: Replace var targetURL and var countdownfrom with your contents.
That's it.....You're done...

0 nhận xét: