مشاركة # 1 | 14:33
Quote
<!-- خطوة واحدة انسخ الجزء التالي حيثما تريد للنص ان يظهر -->

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

<!-- Begin
// ضع النص بين علامتي التنصيص
text = "السلام عليكم " ;
color1 = "blue"; // لون النص الاصلي
color2 = "red"; //لون الحرف المميز
fontsize = "8"; // حجم الخط
speed = 200; // مدى سرعة النص
// time is in milliseconds, (مثلا 1000 = ثانية واحدة)

<!--لا تعدل اي شئ تحت هذا الخط إلا إذا كنت تعلم ما تفعل -->
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>