»
AnglaisFrançaisVietnamien

Imprimer - Effet de texte clignotant - JavaScriptBank.com

Version complète: jsB@nk » Form » Effet de texte clignotant
URL: https://www.javascriptbank.com/blinking-textbox-effect.html

Effet de texte clignotant © JavaScriptBank.comLors de l'exécution, ce JavaScript aura lieu le curseur dans un texte, ce qui provoque sa arrière-plan à clignoter pendant 6 secondes. Cela mettre en évidence le textbox sur la page Web dans le but d'attirer l'attention sur elle.

Version complète: jsB@nk » Form » Effet de texte clignotant
URL: https://www.javascriptbank.com/blinking-textbox-effect.html



JavaScript
<script type="text/javascript">// Created by: Ben Kanaev :: http://www.webhostreview.bizfunction blinkExecute(target,color){  document.getElementById(target).style.backgroundColor = color;}function blinkBlink (target){  color1 = "#feff6f"; // blinking color  color2 = "#ffffff"; // background color  setTimeout('blinkExecute("'+target+'","'+color1+'")',0);  setTimeout('blinkExecute("'+target+'","'+color2+'")',500);  setTimeout('blinkExecute("'+target+'","'+color1+'")',1000);  setTimeout('blinkExecute("'+target+'","'+color2+'")',1500);               setTimeout('blinkExecute("'+target+'","'+color1+'")',2000);  setTimeout('blinkExecute("'+target+'","'+color2+'")',2500);       setTimeout('blinkExecute("'+target+'","'+color1+'")',3000);  setTimeout('blinkExecute("'+target+'","'+color2+'")',3500);       setTimeout('blinkExecute("'+target+'","'+color1+'")',4000);  setTimeout('blinkExecute("'+target+'","'+color2+'")',4500);               document.getElementById(target).focus();}</script><!--    This script downloaded from www.JavaScriptBank.com    Come to view and download over 2000+ free javascript at www.JavaScriptBank.com-->


HTML
<body onload="blinkBlink('name')"><table width="300" align="center">  <tr>    <td width="100"><b>Name:</b></td>    <td width="200"><input id="name" type="text"></td>  </tr><tr>    <td width="100"><b>Address:</b></td>    <td width="200"><input id="address" type="text"></td>  </tr><tr>    <td width="100"><b>Phone Number:</b></td>    <td width="200"><input id="phone" type="text"></td>  </tr><tr>    <td colspan="2" align="center">    <input type="button" value="Submit" onClick="alert('Not submitted ... just testing.');blinkBlink('name')">    </td>  </tr></table></body><!--    This script downloaded from www.JavaScriptBank.com    Come to view and download over 2000+ free javascript at www.JavaScriptBank.com-->