频道直达 - 专题 - 新闻 - 技巧 - 组网 - 开发 - 安全 - web编程 - 图像 - 操作系统 - 数据库 - 教育 - 旅游 - 健康 - 时尚 - 驱动 - 软件 - 游戏 - 多媒体 - ERP - 讨论组

flash实例:超强的粒子特效

来源:闪吧 作者:yinggoing 出处:巧巧读书 2007-05-22 进入讨论组

  超强的粒子特效,效果非常好,在此和大家分享:


效果预览

 

  #initclip 1
  function PoolClass()
  {
  this.stick = {x: 300, y: 169};
  this.onEnterFrame = this.dragStick;
  } // End of the function
  PoolClass.prototype = new MovieClip();
  PoolClass.prototype.dragStick = function ()
  {
  if (this.stick.x < 0)
  {
  this.stick.vx = this.stick.vx + 4 * Math.random();
  }
  else if (this.stick.x > 600)
  {
  this.stick.vx = this.stick.vx - 4 * Math.random();
  }
  else
  {
  this.stick.vx = this.stick.vx + (Math.random() - Math.random()) * 4;
  } // end else if
  if (this.stick.y < 0)
  {
  this.stick.vy = this.stick.vy + 4 * Math.random();
  }
  else if (this.stick.y > 337)
  {
  this.stick.vy = this.stick.vy - 4 * Math.random();
  }
  else
  {
  this.stick.vy = this.stick.vy + (Math.random() - Math.random()) * 4;
  } // end else if
  this.stick.x = this.stick.x + this.stick.vx;
  this.stick.y = this.stick.y + this.stick.vy;
  this.stick.vx = this.stick.vx * 8.000000E-001;
  this.stick.vy = this.stick.vy * 8.000000E-001;
  this.createNode(random(600), random(337), this.stick.x, this.stick.y, 7 + random(13));
  };
  PoolClass.prototype.createRandomNode = function ()
  {
  var x = random(600);
  var y = random(337);
  var dx = this._xmouse;
  var dy = this._ymouse;
  var ds = 10 + random(20);
  this.createNode(x, y, dx, dy, ds);
  };
  PoolClass.prototype.createNode = function (x, y, dx, dy, ds)
  {
  var nombre = "nd" + String(this.depth++);
  var neo = this.attachMovie("node", nombre, this.depth);
  neo._x = x;
  neo._y = y;
  neo.dx = dx;
  neo.dy = dy;
  neo.body._xscale = ds;
  neo.body._yscale = ds;
  };
  Object.registerClass("pool", PoolClass);
  #endinitclip


下载源文件请点击

 

  粒子特效相关文章:

  After effects 6.5实例教程-粒子特效  3DS MAX4粒子特效--喷发的烟雾

巧 巧 读 书:http://www.qqread.com/flash/2007/05/y313512.html 更多文章 更多内容请看Photoshop精彩特效大全专题,或进入讨论组讨论。
更多专题 【深 度 阅 读】 相 关 文 章
    收藏此文】【 】【打印】【关闭
    相关图文阅读
    频道图文推荐
    健 康 咨 询
    时 尚 咨 询
    巧巧读书宗旨
    相关专题
    讨论组问题推荐
    站内各频道最新更新文档
    站内最新制作专题
    热门关键字导读
    Photoshop教 程照片处理 照片制作 PS快捷键 抠图
    计 算 机 故 障XP系统修复
    艺 术 与 设 计设计 流媒体 设计欣赏 边框
    计 算 机 安 全ARP
    站内频道文章精选
    巧巧电脑频道编辑信箱  告诉我们您想看的专题或文章