ตั้งค่าการอ่าน

ค่าเริ่มต้น

  • เลื่อนอัตโนมัติ
    CODE MY ID&BLOG

    ลำดับตอนที่ #104 : :"CodE ตัวอักษรขึ้นสีทีละตัว ไล่ไปจนจบแล้วมาเริ่มใหม่":

    • เนื้อหาตอนนี้เปิดให้อ่าน
    • 307
      0
      29 ม.ค. 51

    <script language="JavaScript">
    <!-- Begin
    text = "แก้ไขคำตรงนี้จ๊ะ" // The text to scroll
    color1 = "สีตัวอักษร"; // original text color
    color2 = "สีตัวอักษรที่วิ่ง"; // new character color
    fontsize = "ขนาดตัวอักษร"; // font size of text
    speed = ความเร็ว; // 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=1 : i++;
    }
    setInterval("changeCharColor()", speed);
    // End -->
    </script>

    ติดตามเรื่องนี้
    เก็บเข้าคอลเล็กชัน

    นิยายที่ผู้อ่านนิยมอ่านต่อ ดูทั้งหมด

    loading
    กำลังโหลด...

    อีบุ๊ก ดูทั้งหมด

    loading
    กำลังโหลด...

    ความคิดเห็น

    ×