首页 > 语言 > JavaScript > 正文

JS基于面向对象实现的放烟花效果

2024-05-06 16:19:35
字体:
来源:转载
供稿:网友

这篇文章主要介绍了JS基于面向对象实现的放烟花效果,涉及javascript面向对象技术的使用技巧,需要的朋友可以参考下

本文实例讲述了JS基于面向对象实现的放烟花效果。分享给大家供大家参考。具体实现方法如下:

 

 
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
  2. "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"
  3. <html xmlns="http://www.w3.org/1999/xhtml"
  4. <head> 
  5. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 
  6. <title>js放烟花效果(面向对象版)</title> 
  7. <style type="text/css"
  8. html,body{overflow:hidden;} 
  9. body,div,p{margin:0;padding:0;} 
  10. body{background:#000;font:12px/1.5 arial;color:#7A7A7A;} 
  11. a{text-decoration:none;outline:none;} 
  12. #tips,#copyright{position:absolute;width:100%;height:50px;text-align:center;background:#171717;border:2px solid #484848;} 
  13. #tips{top:0;border-width:0 0 2px;} 
  14. #tips a{font:14px/30px arial;color:#FFF;background:#F06;display:inline-block;margin:10px 5px 0;padding:0 15px;border-radius:15px;} 
  15. #tips a.active{background:#FE0000;} 
  16. #copyright{bottom:0;line-height:50px;border-width:2px 0 0;} 
  17. #copyright a{color:#FFF;background:#7A7A7A;padding:2px 5px;border-radius:10px;} 
  18. #copyright a:hover{background:#F90;} 
  19. p{position:absolute;top:55px;width:100%;text-align:center;} 
  20. </style> 
  21. <script type="text/javascript"
  22. var fgm = { 
  23. on: function(element, type, handler) { 
  24. return element.addEventListener ? element.addEventListener(type, handler, false) : element.attachEvent("on" + type, handler) 
  25. }, 
  26. un: function(element, type, handler) { 
  27. return element.removeEventListener ? element.removeEventListener(type, handler, false) : element.detachEvent("on" + type, handler) 
  28. }, 
  29. bind: function(object, handler) { 
  30. return function() { 
  31. return handler.apply(object, arguments)  
  32. }  
  33. }, 
  34. randomRange: function(lower, upper) { 
  35. return Math.floor(Math.random() * (upper - lower + 1) + lower)  
  36. }, 
  37. getRanColor: function() { 
  38. var str = this.randomRange(0, 0xFFFFFF).toString(16); 
  39. while(str.length < 6) str = "0" + str; 
  40. return "#" + str  
  41. }; 
  42. //初始化对象 
  43. function FireWorks() { 
  44. this.type = 0; 
  45. this.timer = null
  46. this.fnManual = fgm.bind(thisthis.manual) 
  47. FireWorks.prototype = { 
  48. initialize: function() { 
  49. clearTimeout(this.timer); 
  50. fgm.un(document, "click"this.fnManual); 
  51. switch(this.type) { 
  52. case 1: 
  53. fgm.on(document, "click"this.fnManual); 
  54. break
  55. case 2: 
  56. this.auto(); 
  57. break
  58. }; 
  59. }, 
  60. manual: function(event) { 
  61. event = event || window.event; 
  62. this.__create__({ 
  63. x: event.clientX, 
  64. y: event.clientY  
  65. }); 
  66. }, 
  67. auto: function () 
  68. var that = this
  69. that.timer = setTimeout(function() {  
  70. that.__create__({ 
  71. x: fgm.randomRange(50, document.documentElement.clientWidth - 50), 
  72. y: fgm.randomRange(50, document.documentElement.clientHeight - 150) 
  73. })  
  74. that.auto(); 
  75. }, fgm.randomRange(900, 1100)) 
  76. }, 
  77. __create__: function (param) 
  78. var that = this
  79. var oEntity = null
  80. var oChip = null
  81. var aChip = []; 
  82. var timer = null
  83. var oFrag = document.createDocumentFragment(); 
  84. oEntity = document.createElement("div"); 
  85. with(oEntity.style) { 
  86. position = "absolute"
  87. top = document.documentElement.clientHeight + "px"
  88. left = param.x + "px"
  89. width = "4px"
  90. height = "30px"
  91. borderRadius = "4px"
  92. background = fgm.getRanColor(); 
  93. }; 
  94. document.body.appendChild(oEntity); 
  95. oEntity.timer = setInterval(function() { 
  96. oEntity.style.top = oEntity.offsetTop - 20 + "px"
  97. if(oEntity.offsetTop <= param.y) { 
  98. clearInterval(oEntity.timer); 
  99. document.body.removeChild(oEntity); 
  100. (function() { 
  101. //在50-100之间随机生成碎片 
  102. //由于IE浏览器处理效率低, 随机范围缩小至20-30 
  103. //自动放烟花时, 随机范围缩小至20-30 
  104. var len = (/msie/i.test(navigator.userAgent) || that.type == 2) ? fgm.randomRange(20, 30) : fgm.randomRange(50, 100)  
  105. for (i = 0; i < len; i++) { 
  106. oChip = document.createElement("div"); 
  107. with(oChip.style) { 
  108. position = "absolute"
  109. top = param.y + "px"
  110. left = param.x + "px"
  111. width = "4px"
  112. height = "4px"
  113. overflow = "hidden"
  114. borderRadius = "4px"
  115. background = fgm.getRanColor();  
  116. }; 
  117. oChip.speedX = fgm.randomRange(-20, 20); 
  118. oChip.speedY = fgm.randomRange(-20, 20); 
  119. oFrag.appendChild(oChip); 
  120. aChip[i] = oChip 
  121. }; 
  122. document.body.appendChild(oFrag); 
  123. timer = setInterval(function() { 
  124. for(i = 0; i < aChip.length; i++) { 
  125. var obj = aChip[i]; 
  126. with(obj.style) { 
  127. top = obj.offsetTop + obj.speedY + "px"
  128. left = obj.offsetLeft + obj.speedX + "px"
  129. }; 
  130. obj.speedY++; 
  131. (obj.offsetTop < 0 || obj.offsetLeft < 0 || obj.offsetTop > document.documentElement.clientHeight || obj.offsetLeft > document.documentElement.clientWidth) && (document.body.removeChild(obj), aChip.splice(i, 1)) 
  132. }; 
  133. !aChip[0] && clearInterval(timer); 
  134. }, 30) 
  135. })() 
  136. }, 30) 
  137. }; 
  138. fgm.on(window, "load"function() { 
  139. var oTips = document.getElementById("tips"); 
  140. var aBtn = oTips.getElementsByTagName("a"); 
  141. var oFireWorks = new FireWorks(); 
  142. fgm.on(oTips, "click"function(event) { 
  143. var oEvent = event || window.event; 
  144. var oTarget = oEvent.target || oEvent.srcElement; 
  145. var i = 0; 
  146. if(oTarget.tagName.toUpperCase() == "A") { 
  147. for(i = 0; i < aBtn.length; i++) aBtn[i].className = ""
  148. switch(oTarget.id) { 
  149. case "manual"
  150. oFireWorks.type = 1; 
  151. break
  152. case "auto"
  153. oFireWorks.type = 2; 
  154. break
  155. case "stop"
  156. oFireWorks.type = 0; 
  157. break
  158. oFireWorks.initialize(); 
  159. oTarget.className = "active"
  160. oEvent.stopPropagation ? oEvent.stopPropagation() : oEvent.cancelBubble = true 
  161. }); 
  162. }); 
  163. fgm.on(document, "contextmenu"function(event) { 
  164. var oEvent = event || window.event; 
  165. oEvent.preventDefault ? oEvent.preventDefault() : oEvent.returnValue = false 
  166. }); 
  167. </script> 
  168. </head> 
  169. <body> 
  170. <div id="tips"><a id="manual" href="javascript:;">手动放烟花</a><a id="auto" href="javascript:;">自动放烟花</a><a id="stop" href="javascript:;">停止放烟花</a></div> 
  171. <p>由于浏览器渲染能力有限, 当浏览器为IE或选择自动放烟花时, 随机生成的烟花碎片范围自动调整至20-30</p> 
  172. <div id="copyright">建议使用Firefox, Chrome浏览器预览效果. By — Ferris, QQ:21314130</div> 
  173. </body> 
  174. </html> 

希望本文所述对大家的javascript程序设计有所帮助。

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表

图片精选