text highlighter




JavaScript Source Code 3000: Messages: Text Highlighter






























Text Highlighter







Alternates the font color of each character in a line of text. Useful to catch the attention of your web site visitors. You may also customize the color and font of the text.


















JavaScript Source Code 3000: Messages: Text Highlighter
Simply click inside the window below, use your cursor to highlight the script, and copy (type Control-c or Apple-c) the script into a new file in your text editor (such as Note Pad or Simple Text) and save (Control-s or Apple-s). The script is yours!!!





    





<!-- ONE STEP TO INSTALL TEXT HIGHLIGHTER:

1. Copy the coding into the BODY of your HTML document -->

<!-- STEP ONE: Paste this code into the BODY of your HTML document -->

<BODY>

<SCRIPT LANGUAGE="JavaScript">
<!-- Original: K. Rama Moorthy -->
<!-- Web Site: http://www.suyambhu.bizhosting.com -->

<! >
<! >

<!-- Begin
text = "JavaScript Rules"; // The text to scroll
color1 = "blue"; // original text color
color2 = "red"; // new character color
fontsize = "8"; // font size of text
speed = 200; // how fast to rotate to next character
// time is in milliseconds, (i.e. 1000 = 1 second)

i = 0;
if (navigator.appName == "Netscape") {
document.write("<layer id=a visibility=show></layer><br><br><br>");
}
else {
document.write("<div id=a></div>");
}
function changeCharColor() {
if (navigator.appName == "Netscape") {
document.a.document.write("<center><font size =" + fontsize + "><font color=" + color1 + ">");
for (var j = 0; j < text.length; j++) {
if(j == i) {
document.a.document.write("<font color=" + color2 + ">" + text.charAt(i) + "</font>");
}
else {
document.a.document.write(text.charAt(j));
}
}
document.a.document.write('</font></font></center>');
document.a.document.close();
}
if (navigator.appName == "Microsoft Internet Explorer") {
str = "<center><font size=" + fontsize + "><font color=" + color1 + ">";
for (var j = 0; j < text.length; j++) {
if( j == i) {
str += "<font color=" + color2 + ">" + text.charAt(i) + "</font>";
}
else {
str += text.charAt(j);
}
}
str += "</font></font></center>";
a.innerHTML = str;
}
(i == text.length) ? i=0 : i++; // reset after going through all letters
}
setInterval("changeCharColor()", speed);
// End -->
</script>



<!-- Script Size: 1.89 KB -->










Wyszukiwarka

Podobne podstrony:
highlighted text
java text FieldPosition
java text CollationElementIterator
song23 Elektryczne gitary Dzieci text tab
Coolio Geto Highlites
Lesson Plan 099 Text
1c Eurasia domina text sub
Lesson Plan 084 Text
Lesson Plan 114 Text
assignments view done text
Lesson Plan 075 Text
Lesson Plan 012 Text
Text
text
Lesson Plan 083 Text
text Xenophon

więcej podobnych podstron