Banner 468 x 60

Loading...
Loading...

Cara membuat ketikan berefek pada blogspot


Langsung aja kita membuat judul postingan ber efek seperti gimana waktu kita mengetik huruf..

1. Login ke blogger
2. Pilih Tata Letak
3. Klik Edit HTML
4. Cari kode </body>
5. Paste script berikut ini tepat diatas kode </body>



<script>
var tit = document.title;
var c = 0;
function writetitle() {
document.title = tit.substring(0,c);
if(c==tit.length)
{
c = 0;
setTimeout("writetitle()", 2000)
}
else {
c++;
setTimeout("writetitle()", 275)
}
}
writetitle()
</script>

6. Selesai dan hasilnya dapat dilihat di tab browser anda

0 Response to "Cara membuat ketikan berefek pada blogspot"

Loading...