模板酷站

电脑版
提示:原网页已由神马搜索转码, 内容由www.mb5u.com提供.

小技巧:纯AS的运动模糊效果_Flash教程

编辑Tag赚U币
教程Tag:暂无Tag,欢迎添加,赚取U币!

推荐:仿央视网Flash动态导航菜单分析:该效果主要是利用在按钮的OVER(经过)帧中放入MovieClip(影片剪辑MC)来实现的,主要效果的实现都是在MC中实现的,利用了遮罩、淡入,移动等动画

import flash.filters.*;
var blur:BlurFilter = new BlurFilter(blurX, blurY, 1);
var num = 10;
for (var i = 0; i<num; i ) {
scale = random(300);
alpha = random(10000/scale) 30;
var temp_mc = _root.createEmptyMovieClip("ball" i, this.getNextHighestDepth());
temp_mc.createTextField("my_txt", 1, 0, 0, 300, 100);
temp_mc.my_txt.multiline = true;
temp_mc.my_txt.wordWrap = true;
temp_mc.my_txt.text = "WWW.3C800.COM";
var my_fmt:TextFormat = new TextFormat();
my_fmt.color = 0xFF6600;
my_fmt.size = 20;
my_fmt.font = "BM bug";
temp_mc.my_txt.setTextFormat(my_fmt);
with (temp_mc) {
_x = random(Stage.width);
_y = random(Stage.height);
_xscale = scale;
_yscale = scale;
_alpha = alpha;
}
temp_mc.onEnterFrame = function() {
Yspeed = (Stage.height/2-_ymouse)/this._yscale*12;
Xspeed = (Stage.width/2-_xmouse)/this._xscale*12;
blur.blurX = Math.abs(Xspeed);
blur.blurY = Math.abs(Yspeed);
this.filters = [blur];
this._y = Yspeed;
if (this._y>Stage.height) {
this._y = 0;
}
if (this._y<0) {
this._y = Stage.height;
}
this._x = Xspeed;
if (this._x>Stage.width) {
this._x = 0;
}
if (this._x<0) {
this._x = Stage.width;
}
};
}

分享:Flash中的鼠标绘画技巧该篇主要讲述了如何使用鼠标绘制人的脸形,看着网上那么多缤纷多彩的Flash,相信很多朋友都有想自己亲手制作动画片的愿望。但我们中的大多数人并没有学过绘画,

所属分类:Flash教程/更新时间:2008-03-05
最新评论:

暂时还没人评论! 快来抢沙发啊!


匿名评论
相关Flash教程

网站制作教程搜索