让表格闪起来的技巧
发表于:2007-06-30来源:作者:点击数:
标签:
让表格闪起来的技巧
现在做的网页都是越做越花哨的,大家常常会看到关于文字闪烁的
javascript 代码,可是能否让表格也闪起来?
答案是肯定的。你看:
<table border="0" width="280" id="flashtable" style="border:5px solid yellow">
<tr>
<
td>表格内容</td>
</tr>
</table>
<script language="
JavaScript">
<!--
function flashit()
{
if (!document.all)
return
if (flashtable.style.borderColor=="yellow")
flashtable.style.borderColor="lime"
else
flashtable.style.borderColor="yellow"
}
setInterval("flashit()", 500)
-->
</script>
原文转自:http://www.ltesting.net