»
Tiếng AnhTiếng PhápTiếng Việt

In - Màu nền danh sách chớp giật - JavaScriptBank.com

Phiên bản đầy đủ: jsB@nk » Biểu mẫu » Trình đơn xổ dọc » Màu nền danh sách chớp giật
URL: https://www.javascriptbank.com/the-select-bgchanger.html

Màu nền danh sách chớp giật © JavaScriptBank.comHiệu ứng làm cho màu nền của một danh sách chọn đổi màu liên tục trong như chớp giật. Một hiệu ứng rất tốt nhằm thu hút sự chú ý của người dùng vào danh sách.

Phiên bản đầy đủ: jsB@nk » Biểu mẫu » Trình đơn xổ dọc » Màu nền danh sách chớp giật
URL: https://www.javascriptbank.com/the-select-bgchanger.html



JavaScript
<SCRIPT langauge="javascript">/*       By: Aaron Connelly       E-Mail: MAUWDIB@aol.com       for non-comercial uses only - Other contact at the E-Mail address above        This Credit Must stay intact for use!!!!!!!!!!*/function change(){//The Text Colorvar color="blue"//You can change the background Colorsvar a=new Array()a[1]="gold"a[2]="red"a[3]="skyblue"a[4]="orange"a[5]="lightseagreen"a[6]="lime"a[7]="purple"a[8]="white"a[9]="salmon"a[10]="lightgrey"/*  if you add more colors just replace the 11 with one higher then the last array number Example : the array's last number is 20. So the 11 or random number will be 21.*/var r=Math.floor(Math.random() * 11) + 1document.forms[0].menuBg.style.backgroundColor=a[r]document.forms[0].menuBg.style.fontWeight="bold"document.forms[0].menuBg.style.color=colorsetTimeout("change()",100)}window.onload=change</SCRIPT><!--    This script downloaded from www.JavaScriptBank.com    Come to view and download over 2000+ free javascript at www.JavaScriptBank.com-->


HTML
<FORM><SELECT name=menuBg> <OPTION selected value=Whatever>Select a Topic<OPTION value=http://javascriptbank.com>JavaScriptBank.com  <OPTION value=http://javascriptbank.com>JavaScriptBank.com  <OPTION   value=http://www.javascriptbank.com>JavaScriptBank.com  <OPTION value=http://www.javascriptbank.com>eCHÍP<OPTION   value=Whatever>C++</OPTION></SELECT> </FORM><!--    This script downloaded from www.JavaScriptBank.com    Come to view and download over 2000+ free javascript at www.JavaScriptBank.com-->