שלח תשובה

זירת השאלות

3 תשובות

  1. adventureboy הגיב:

    מה זאת אומרת תהבהב?
    אם את מתכוונת למשל שהצבע רקע שלה יהפוך לצהוב ואז ללבן אחרי נגיד 2 שניות וחוזר חלילה תשתמשי ב JAVASCRIPT

  2. BuildHome הגיב:

    הבהוב שורה
    סקריפט קטן שכתבתי:
    <script type="text/javascript">
       function blinkIT() {
          var theTR = document.getElementById("myTR");
          var color1 = "blue";
          var color2 = "red";
          var bgColor1 = "white";
          var bgColor2 = "green";
          if(theTR.style.color==color1) {
             theTR.style.color = color2;
             theTR.style.backgroundColor = bgColor2;
          }
          else {
             theTR.style.color = color1;
             theTR.style.backgroundColor = bgColor1;
          }
       }
      
       function callBlinkIt() {
          x = setInterval("blinkIT()",300);
       }
       callBlinkIt(0);
    </script>

    <table>
    <tr id="myTR">
      <td>תא ראשון</td>
      <td>תא שני</td>
      <td>תא שלישי</td>
    </tr>
    </table>

    אפשר להבהב גם את הגבול של השורה וכל מה שצריך בעזרת CSS (כמובן לשנות את ההגדרות הקיימות).

שלח תשובה