flash小游戏及flash片头等等的flash资源源码都是新丁flash资源网为大家提供娱乐和学习以及为相关flash工作者提供方面之门!
  首页 | 片头欣赏 | Banner 欣赏 | Flash 特效 | 网站欣赏 | 技术文档 | 视频教程 | 网页模板 | flash小游戏 | 源码下载 | 相关下载 | 声音下载 | 
  flash Action应用   您当前的位置是:首页 >> 技术文档 >> flash Action应用 >> 详细内容
Flash AS打造超强粒子视觉冲击特效
加入时间:2007-10-2  浏览:32   录入:启能Flash资源网   来源:网络
超强的粒子特效,效果非常好,和大家分享:



#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源文件下载: 粒子特效.rar
关于我们 | 联系方式 | 广告赞助 | 免责声明 | 站点留言 | 友情链接 | 推荐站点
Copyright 2007-2008 新丁flash资源网 All Rights Reserved
本站版权所有 新丁flash资源网 保留所有权利 未经许可请勿任意转载或复制使用 
请使用1024*768分辨率浏览本站以达到浏览新丁flash资源网的最佳视觉效果
新丁flash资源网中所有的解压密码均为:www.qnflash.com
粤ICP备08010396号