»
AnglaisFrançaisVietnamien

Imprimer - Clignotant Table des frontières Script - JavaScriptBank.com

Version complète: jsB@nk » Form » Table » Clignotant Table des frontières Script
URL: https://www.javascriptbank.com/flashing-table-border-script.html

Clignotant Table des frontières Script © JavaScriptBank.comAvec cette JavaScript, Vous pouvez faire de la frontière table changer de couleur en permanence.

Version complète: jsB@nk » Form » Table » Clignotant Table des frontières Script
URL: https://www.javascriptbank.com/flashing-table-border-script.html



JavaScript
<SCRIPT language=JavaScript1.2><!--//configure interval btw flash (1000=1 second)var speed=100function flashit(){var crosstable=document.getElementById? document.getElementById("myexample") : document.all? document.all.myexample : ""if (crosstable){if (crosstable.style.borderColor.indexOf("green")!=-1)crosstable.style.borderColor="red"elsecrosstable.style.borderColor="green"}}setInterval("flashit()", speed)//--></SCRIPT><!--    This script downloaded from www.JavaScriptBank.com    Come to view and download over 2000+ free javascript at www.JavaScriptBank.com-->


HTML
<div id=myexample style="BORDER-BOTTOM: green 5px solid; BORDER-LEFT: green 5px solid; BORDER-RIGHT: green 5px solid; BORDER-TOP: green 5px solid">JavaScriptBank.com - Bank of over 2000+ free JavaScript.</div><!--    This script downloaded from www.JavaScriptBank.com    Come to view and download over 2000+ free javascript at www.JavaScriptBank.com-->