Membuat teks di title berjalan

Posted by tazri | 6:13 AM | , | 0 comments »

Ini postingan buat para pemula aja, yang dah master dialarang baca coz malah bikin BT deh abis baca ini. Sesuai judul, sekarang gw mau bikin posting cara bikin title berjalan mengunakan "javascript".

Ok langsung caranya ya hehehehe.
1. biasa login blogger dulu
2. pilih layout

3. kalo dah di menu layout, pilih add gadget

4. nah bis ntu masukin script ini :
<script type="text/javascript">
//TITLE BAR
function tb1_makeArray(n){
this.length = n;
return this.length;
}

tb1_messages = new tb1_makeArray(1);
tb1_messages[0] = "teks yang mau lw tulis";
tb1_bln = 10;
tb1_rptType = 'infinite';
tb1_rptNbr = 5;
tb1_speed = 100;
tb1_counter=1;
tb1_timer = null;
tb1_last = 1;
tb1_st='';
tb1_currMsg = 0;
function tb1_scrolltitle(){
if (tb1_last > tb1_messages[tb1_currMsg].length){
if (tb1_st.length == 0){
tb1_last=1;
if (tb1_currMsg == tb1_messages.length-1){
if ((tb1_rptType == 'finite') && (tb1_counter==tb1_rptNbr)){
clearTimeout(tb1_timer);
return;
}
tb1_counter++;
tb1_currMsg=0;
}
else{
tb1_currMsg++;
}
}
else{
tb1_st=tb1_st.substring(1,tb1_st.length);
}
}
else{
tb1_st = tb1_messages[tb1_currMsg].substring(0, tb1_last);
for (var i=0; i<=(tb1_bln+tb1_messages[tb1_currMsg].length-tb1_last); i++)
tb1_st="_"+tb1_st;
tb1_last++;
}
document.title = tb1_st;
tb1_timer = setTimeout("tb1_scrolltitle()", tb1_speed);
}
tb1_scrolltitle();
</script>

5. ganti teks yang warna merah dengan kata2 lw, terus save deh,

0 comments