变色的表格框_层和布局特效

模板酷站
  •       3/5
  •       1
  •       2
  •       3
  •       4
  •       5
查看演示效果

      织梦DedeCMS视频教程买空间 租服务器 选网硕互联! 无忧站长工具,百度权重一键全查!

      变色的表格框,您可以先修改部分代码再运行.

      <table border="0" width="280" id="myexample" style="border:5px solid green"> <tr> <td>Insert anything you want into this table.<br>Insert anything you want into this table.<br>Insert anything you want into this table.<br></td> </tr> </table> <script language="JavaScript1.2"> <!-- /* Flashing Table Border Script- ?Dynamic Drive (www.dynamicdrive.com) For full source code, installation instructions, 100's more DHTML scripts, and Terms Of Use, visit dynamicdrive.com */ function flashit(){ if (!document.all) return if (myexample.style.borderColor=="green") myexample.style.borderColor="red" else myexample.style.borderColor="green" } setInterval("flashit()", 500) //--> </script>