xoxjesse143xox

Typing Tittle Bar

Aug 17th, 2012
30
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.92 KB | None | 0 0
  1. <script type="text/javascript">
  2. //Created by Title bar Maker (http://www.bosiljak.hr/titlemaker)
  3. function tb8_makeArray(n){
  4. this.length = n;
  5. return this.length;
  6. }
  7.  
  8. tb8_messages = new tb8_makeArray(1);
  9. tb8_messages[0] = " TEXT HERE ";
  10. tb8_rptType = 'infinite';
  11. tb8_rptNbr = 5;
  12. tb8_speed = 100;
  13. tb8_delay = 1500;
  14. var tb8_counter=1;
  15. var tb8_currMsg=0;
  16. var tb8_tekst ="";
  17. var tb8_i=0;
  18. var tb8_TID = null;
  19. function tb8_pisi(){
  20. tb8_tekst = tb8_tekst + tb8_messages[tb8_currMsg].substring(tb8_i, tb8_i+1);
  21. document.title = tb8_tekst;
  22. tb8_sp=tb8_speed;
  23. tb8_i++;
  24. if (tb8_i==tb8_messages[tb8_currMsg].length){
  25. tb8_currMsg++; tb8_i=0; tb8_tekst="";tb8_sp=tb8_delay;
  26. }
  27.  
  28. if (tb8_currMsg == tb8_messages.length){
  29. if ((tb8_rptType == 'finite') && (tb8_counter==tb8_rptNbr)){
  30. clearTimeout(tb8_TID);
  31. return;
  32. }
  33.  
  34. tb8_counter++;
  35. tb8_currMsg = 0;
  36. }
  37.  
  38. tb8_TID = setTimeout("tb8_pisi()", tb8_sp);
  39. }
  40.  
  41. tb8_pisi()
  42.  
  43. </script>
Add Comment
Please, Sign In to add comment