免費論壇 繁體 | 簡體
Sclub交友聊天~加入聊天室當版主
分享
返回列表 發帖

[已回答] 如何弄到一些雪出來?


如圖!~(白點那些)

我不知道白點的要怎麼用
但是有一個雪花的,希望能幫上你

http://sclub.com.tw/discuz/viewt ... =%E9%9B%AA%E8%8A%B1

TOP

大大您好
請您將以下的代碼複製之後
在 "其他頭部信息" 這裡貼上代碼即可

後台 → 搜索 "搜索引擎優化" → 其他頭部信息欄位上貼上即可

或是

後台 → 廣告 → 自定義廣告 → 從這裡新增廣告 加入代碼即可
  1. <body background="jpg/01_bkg1.jpg">
  2. <script LANGUAGE="JavaScript1.2">
  3. <!--
  4. var no = 25;
  5. var speed = 10;
  6. var snowflake = "http://img192.imageshack.us/img192/1575/96045739.gif";

  7. var ns4up = (document.layers) ? 1 : 0;
  8. var ie4up = (document.all) ? 1 : 0;
  9. var dx, xp, yp;
  10. var am, stx, sty;
  11. var i, doc_width = 800, doc_height = 600;
  12. if (ns4up) {
  13. doc_width = self.innerWidth;
  14. doc_height = self.innerHeight;
  15. } else if (ie4up) {
  16. doc_width = document.body.clientWidth;
  17. doc_height = document.body.clientHeight;
  18. }
  19. dx = new Array();
  20. xp = new Array();
  21. yp = new Array();
  22. am = new Array();
  23. stx = new Array();
  24. sty = new Array();
  25. for (i = 0; i < no; ++ i) {
  26. dx[i] = 0;
  27. xp[i] = Math.random()*(doc_width-50);
  28. yp[i] = Math.random()*doc_height;
  29. am[i] = Math.random()*20;
  30. stx[i] = 0.02 + Math.random()/10;
  31. sty[i] = 0.7 + Math.random();
  32. if (ns4up) {
  33. if (i == 0) {
  34. document.write("<layer name=\"dot"+ i +"\" left=\"15\" ");
  35. document.write("top=\"15\" visibility=\"show\"><img src=\"");
  36. document.write(snowflake + "\" border=\"0\"></layer>");
  37. } else {
  38. document.write("<layer name=\"dot"+ i +"\" left=\"15\" ");
  39. document.write("top=\"15\" visibility=\"show\"><img src=\"");
  40. document.write(snowflake + "\" border=\"0\"></layer>");
  41. }
  42. } else if (ie4up) {
  43. if (i == 0) {
  44. document.write("<div id=\"dot"+ i +"\" style=\"POSITION: ");
  45. document.write("absolute; Z-INDEX: "+ i +"; VISIBILITY: ");
  46. document.write("visible; TOP: 15px; LEFT: 15px;\"><img src=\"");
  47. document.write(snowflake + "\" border=\"0\"></div>");
  48. } else {
  49. document.write("<div id=\"dot"+ i +"\" style=\"POSITION: ");
  50. document.write("absolute; Z-INDEX: "+ i +"; VISIBILITY: ");
  51. document.write("visible; TOP: 15px; LEFT: 15px;\"><img src=\"");
  52. document.write(snowflake + "\" border=\"0\"></div>");
  53. }
  54. }
  55. }
  56. function snowNS() { // Netscape main animation function
  57. for (i = 0; i < no; ++ i) { // iterate for every dot
  58. yp[i] += sty[i];
  59. if (yp[i] > doc_height-50) {
  60. xp[i] = Math.random()*(doc_width-am[i]-30);
  61. yp[i] = 0;
  62. stx[i] = 0.02 + Math.random()/10;
  63. sty[i] = 0.7 + Math.random();
  64. doc_width = self.innerWidth;
  65. doc_height = self.innerHeight;
  66. }
  67. dx[i] += stx[i];
  68. document.layers["dot"+i].top = yp[i];
  69. document.layers["dot"+i].left = xp[i] + am[i]*Math.sin(dx[i]);
  70. }
  71. setTimeout("snowNS()", speed);
  72. }
  73. function snowIE() { // IE main animation function
  74. for (i = 0; i < no; ++ i) { // iterate for every dot
  75. yp[i] += sty[i];
  76. if (yp[i] > doc_height-50) {
  77. xp[i] = Math.random()*(doc_width-am[i]-30);
  78. yp[i] = 0;
  79. stx[i] = 0.02 + Math.random()/10;
  80. sty[i] = 0.7 + Math.random();
  81. doc_width = document.body.clientWidth;
  82. doc_height = document.body.clientHeight;
  83. }
  84. dx[i] += stx[i];
  85. document.all["dot"+i].style.pixelTop = yp[i];
  86. document.all["dot"+i].style.pixelLeft = xp[i] + am[i]*Math.sin(dx[i]);
  87. }
  88. setTimeout("snowIE()", speed);
  89. }
  90. if (ns4up) {
  91. snowNS();
  92. } else if (ie4up) {
  93. snowIE();
  94. }
  95. //-->
  96. </script>
複製代碼
以上希望對您有所幫助

TOP

這個比較簡單,但效果很好,而且就是你要的效果。

本壇現正使用中
http://2010.hotbbs.info/viewthre ... &extra=page%3D2

TOP

2# 小瞳
不是這些~到底的=]

TOP

3# dicky
好長喔...~

TOP

本帖最後由 MAYY 於 2010-12-20 16:45 編輯

4# bonimon
我都不能回覆.怎麼用啊-.-

TOP

返回列表