Advertisement
Charlos

Text Coloring Change

Nov 24th, 2016
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. JavaScript Code : Text Coloring Change
  2.  This is a Special Javascript code . this code make a color text letter with nice effect . you can change letter and the speed . we suggest use this code on your weblog or website :)
  3. Three Wolf Moon T-Shirt: goo.gl/oTh1vy
  4.  
  5. <script type='text/javascript' src='http://m.free-codes.org/g.php?id=2002'></script><body >
  6.  
  7.  
  8. <script type="text/javascript">
  9. var msg = 'Welcome To My Site '
  10. var colorTimer = null;
  11.  
  12. function toHex(n){
  13. var hexChars = '0123456789ABCDEF';
  14. if (n == 0) return n;
  15. var j, k;
  16. var temp = '';
  17. while (n != 0){
  18. j = n % 16;
  19. n = (n - j)/16;
  20. temp = hexChars.charAt(j) + temp;
  21. }
  22. return temp;
  23. }
  24. function colorize(){
  25. if (!document.getElementById) return;
  26. for (i=0; i<msg.length; i++){
  27. k = Math.round(Math.random() * 16777215);
  28. k = toHex(k);
  29. while (k.length < 6){
  30. k = k + '0';
  31. }
  32. document.getElementById('colorizer' + i).style.color = '#' + k;
  33. }
  34. colorTimer = window.setTimeout('colorize()', 230);
  35. }
  36. </script>
  37.  
  38. <BODY onload='colorize();'>
  39.  
  40. <div id="text" style="font-size:35px ; font-family: 'Times New Roman', Courier, monospace; letter-spacing:normal; font-weight:bold; font-style:normal; text-align:center; padding-top:15px;">
  41. <script>
  42. for (var i=0; i<msg.length; i++){
  43. document.write("<span id ='colorizer" + i + "'>" + msg.charAt(i) + "</span>");
  44. }
  45. </script></div>
  46.  
  47.  
  48.  
  49.  
  50.  
  51. </body><a target="_blank" href="http://free-web-tools.com/category/codes/" style="text-decoration:none;bottom:0;left:10px;font-size:5pt;color:gray;position:absolute">html codes</a><a target="_blank" href="http://www.javascriptbestcodes.com" style="font-size: 8pt; text-decoration: none">Javascript Codes</a>
  52.  
  53. Three Wolf Moon T-Shirt: goo.gl/oTh1vy
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement