一个彩色光条的效果_Flash教程
教程Tag:暂无Tag,欢迎添加,赚取U币!
推荐:用Flash影片剪辑复制做“鼠标跟随”特效思路:以前各种教程中都用startDrag去产生鼠标跟随的效果,在这里我用别的方法去跟大家show一个鼠标跟随的效果。其实鼠标跟随说白了不就是要求对象的位置和
做了一个彩色光条的效果,效果请浏览 http://www.flashplayer.cn/example/colorlight/ 制作非常简单,基本就是应用一下mask效果,复制多个光条利用一些随机性产生效果 for (var i:Number = 0; i<15; i ) {var tmpmc:MovieClip = light.duplicateMovieClip("light_" i, i 1);
tmpmc._x = randomZone(150, 500);
tmpmc._y = randomZone(150, 400);
tmpmc._xscale = randomZone(70, 120);
tmpmc._yscale = randomZone(70, 120);
tmpmc._rotation = randomZone(0, 360);
tmpmc.b.gotoAndPlay(randomZone(1, 130));
tmpmc.b.a.gotoAndPlay(randomZone(1, 50));
}
//返回s到e的随机数,包括s和e
function randomZone(s:Number, e:Number):Number {
return s Math.floor((e-s 1)*Math.random());
} 下载源文件:http://www.flashplayer.cn/example/colorlight/colorlight.fla
分享:技巧:自制Flash FLV视频播放器大家好,前不久笔者将CenFunMusicPlayer加入flv视频播放功能,这里单独拿出来给大家做一个FlashFLV播放器(仅ActionScript控制,不使用FLVPlayback组件),如
相关Flash教程:
- 相关链接:
- 教程说明:
Flash教程-一个彩色光条的效果。