返回列表 发帖

求教 数据流背景是如何做出来的?

看过几个网页
他们的背景很独特
  背景色是黑的
有向下滚动动数据流
谁可以叫我这中背景是如何做出来的?
   给个教程也行啊!!
  是用flash mx 做出来的吗?

求教 数据流背景是如何做出来的?

希望楼主多多关心本版,谢谢

TOP

求教 数据流背景是如何做出来的?

不错
就是这中特效
谢谢帮助
非常感谢

TOP

求教 数据流背景是如何做出来的?

我不知道雷傲的论坛没有运行代码

还是我不会用雷傲的论坛。

只能让这为哥们放到DREAMWEAVER里看看效果了。

TOP

求教 数据流背景是如何做出来的?

不知道你说的是不是这个!! 这只是一个网业特效而已
  1. <html>
  2. <head>
  3. <title>0、1数字下落</title>
  4. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  5. </head>
  6. <body bgcolor=&#35;000000>
  7. <!-------------------------------->
  8. <script language="JavaScript">
  9. <!--
  10. if (document.all){
  11. Cols=8;//满屏最多显示的个数
  12. Cl=10;//数量
  13. Cs=100;//间距
  14. Ts=30;//文字大小
  15. Tc=';&#35;008800';;
  16. Tc1=';&#35;00ff00';;
  17. MnS=5;//下落速度
  18. MxS=5;//下落速度
  19. I=Cs;
  20. Sp=new Array();S=new Array();Y=new Array();
  21. C=new Array();M=new Array();B=new Array();
  22. RC=new Array();E=new Array();Tcc=new Array("u");ue=new Array("欢<br/>迎<br/>来<br/>到<br/>黑<br/>色","海<br/>岸","线","看","嘿")
  23. document.write("<div id=';Container'; style=';position:absolute;top:0;left:-"+Cs+"';>");
  24. document.write("<div style=';position:relative';>");
  25. for(i=0; i < Cols; i++){
  26. S[i]=I+=Cs;
  27. document.write("<div id=';A'; style=';position:absolute;top:0;font-family:Arial;font-size:"
  28. +Ts+"px;left:"+S[i]+";width:"+Ts+"px;height:0px;color:"+Tc+";visibility:hidden';></div>");
  29. }
  30. document.write("</div></div>");
  31. for(j=0; j < Cols; j++){
  32. RC[j]=1+Math.round(Math.random()*Cl);
  33. Y[j]=0;
  34. Sp[j]=Math.round(MnS+Math.random()*MxS);
  35. for(i=0; i < RC[j]; i++){
  36. B[i]=';';;
  37. C[i]=Math.round(Math.random()*1)+'; ';;
  38. M[j]=B[0]+=C[i];
  39. }
  40. }
  41. function Cycle(){
  42. Container.style.top=window.document.body.scrollTop;
  43. for (i=0; i < Cols; i++){
  44. var r = Math.floor(Math.random()*Tcc.length);
  45. E[i] = ';<font color=';+Tc1+';>';+Tcc[r]+';</font>';;
  46. Y[i]+=Sp[i];
  47. if (Y[i] > window.document.body.clientHeight){
  48. for(i2=0; i2 < Cols; i2++){
  49. RC[i2]=1+Math.round(Math.random()*Cl);
  50. for(i3=0; i3 < RC[i2]; i3++){
  51. B[i3]=';';;
  52. C[i3]=Math.round(Math.random()*1)+'; ';;
  53. C[Math.floor(Math.random()*i2)]='; ';+'; ';;
  54. tt=Math.floor(Math.random()*ue.length);
  55. tt=ue[tt]+"<br/>";
  56. M[i]=B[0]+=tt;
  57. Y[i]=-Ts*M[i].length/1.5;
  58. A[i].style.visibility=';visible';;
  59. }
  60. Sp[i]=Math.round(MnS+Math.random()*MxS);
  61. }
  62. }
  63. A[i].style.top=Y[i];
  64. A[i].innerHTML=M[i]+'; ';+E[i]+'; ';;
  65. }
  66. setTimeout(';Cycle()';,10)
  67. }
  68. Cycle();
  69. }
  70. // -->
  71. </script>
  72. <!---------------------------------->
  73. </body>
  74. </html>
  75. </body>
  76. </html>
复制代码

TOP

返回列表 回复 发帖