论坛交流
首页办公自动化| 网页制作| 平面设计| 动画制作| 数据库开发| 程序设计| 全部视频教程
应用视频: 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教程
Tag:flash cs,flash 8,鼠绘,as,手绘,工具,文字,loading,入门,初学,mc,影片剪辑,声音,mtv,游戏,引导,遮罩,菜单,补间,广告条,时钟,视频教程

纯AS的运动模糊效果

文章类别:Flash | 发表日期:2008-9-21 19:51:48

  
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热门教程
看全部视频教程
购买方式/价格
购买视频教程: 咨询客服
tel:15972130058