论坛交流
首页办公自动化| 网页制作| 平面设计| 动画制作| 数据库开发| 程序设计| 全部视频教程
应用视频: Windows | Word2007 | Excel2007 | PowerPoint2007 | Dreamweaver 8 | Fireworks 8 | Flash 8 | Photoshop cs | CorelDraw 12
编程视频: C语言视频教程 | HTML | Div+Css布局 | Javascript | Access数据库 | Asp | Sql Server数据库Asp.net  | Flash AS
当前位置 > 文字教程 > Flash AS编程教程
Tag:2.0,3.0菜鸟,游戏,,cs,技巧,源码,,文本,文字,函数,音乐,随机,拖拽,asp,access,xml,mc,视频教程

超强的粒子特效

文章类别:Flash AS编程 | 发表日期:2008-10-6 18:07:12


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



#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
视频教程列表
文章教程搜索
 
Flash AS推荐教程
Flash AS热门教程
看全部视频教程
购买方式/价格
购买视频教程: 咨询客服
tel:15972130058