DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> JavaScript入門知識 >> 關於JavaScript >> JavaScript實現表格快速變色效果代碼
JavaScript實現表格快速變色效果代碼
編輯:關於JavaScript     

本文實例講述了JavaScript實現表格快速變色效果的方法。分享給大家供大家參考。具體如下:

這裡使用JavaScript實現一個極酷的表格特效,表格快速的變色,形成色彩炫麗的效果,第一眼看上去,甚至不像是表格。讀者可以通過本代碼來研究一下Js的相關特性,了解一些JS編程技巧。

運行效果截圖如下:

在線演示地址如下:

http://demo.jb51.net/js/2015/js-table-fast-cha-color-codes/

具體代碼如下:

<HTML>
<HEAD>
<TITLE>變色表格</TITLE>
<META content="text/html; charset=utf-8" http-equiv=Content-Type>
</HEAD>
<body>
<script>
l=Array(0,1,2,3,4,5,6,7,8,9,'a','b','b','c','d','e','f');
function f(y)
{
 for(i=5;i<117;i++)
 {
 c=(i+y)%30;
 if(c>15)
  c=30-c;
 eval("document.all[i].bgColor='00"+l[c]+l[c]+"00'");
 }
 y++;
 setTimeout('f('+y+')','1');
}
function p(x)
{
 document.write("<td> </td>");
 x++;
 if((x%10==1)&&(x%100!=1))
 document.write("</tr><tr>");
 if(x<101)
 p(x);
 else
 {
 document.write("</tr>");
 f(1);
 }
}
document.write("<body bgcolor=0><table width=300 height=300 border=0 cellpadding=0 cellspacing=0><tr>");
p(1);
</script>
</body>
</HTML>

希望本文所述對大家的javascript程序設計有所幫助。

XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved