由于是面向对象,所以步骤非常重要 ** 一.OOA: ** 1. 创建元素; 2. 元素运动; 3. 烟花爆炸; 4. 随机位置; 5. 随机颜色; 二.OOD: function FireWork( x , y ) { this.init( x , y ); } FireWork.prototype = { constructor : FireWork , init : function( x , y ){ }, // 1. 创建元素; createFireWorkEle : function (){ }, // 2. 元素运动;