一個彩色光條的效果_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教程-一個彩色光條的效果。