這是一個(gè)非常簡(jiǎn)單的教程,將學(xué)習(xí)用發(fā)光濾鏡使對(duì)象產(chǎn)生發(fā)光的效果。注意:這個(gè)實(shí)例需要 TweenMax 類,請(qǐng)把附件中的gs類庫(kù)保存在fla同一目錄下。
AS3.0發(fā)光的文字效果實(shí)例
這是一個(gè)非常簡(jiǎn)單的教程,將學(xué)習(xí)用發(fā)光濾鏡使對(duì)象產(chǎn)生發(fā)光的效果。
注意:這個(gè)實(shí)例需要 TweenMax 類,請(qǐng)把附件中的gs類庫(kù)保存在fla同一目錄下。
演示:
1、新建Flash文件,設(shè)置屬性:寬高根據(jù)舞臺(tái)上的影片剪輯多少設(shè)定,我這里為 550 × 200 ,背景黑色。圖1:
2、選文本工具,在舞臺(tái)上輸入一些靜態(tài)的本文。根據(jù)需要選擇字型和字的大小。顏色選你喜歡的。圖2:
3、選菜單=>修改=>分離,把文字打散。圖3:
4、單選每一個(gè)字,右鍵單擊轉(zhuǎn)換為影片剪輯。命名根據(jù)你的需要,設(shè)定注冊(cè)點(diǎn)為居中。圖4:
全部完成后庫(kù)如圖5:
5、添加as層,選中第一幀,輸入下列代碼:
//Import tweenmax import gs.*; //Loop through all the letters in the stage for (var i=0; i < numChildren; i++) { //Get a letter (movie clip) from the stage var mc:* = getChildAt(i); //Add an MOUSE_OVER listener for the letter mc.addEventListener(MouseEvent.MOUSE_OVER, mouseOverHandler); //Tween the letter to have a white glow TweenMax.to(mc, 0.2 , {glowFilter:{color:0xffffff, alpha:1, blurX:10, blurY:10}}); } //This function is called when the mouse is over an letter function mouseOverHandler(e:Event):void { //Save the letter to a local variable var letter:MovieClip = e.target as MovieClip; //Animate the letter. //We call the function scaleBack() when the tween is finished TweenMax.to(letter, 0.8 , {scaleX: -1, glowFilter:{color:0xff8800, blurX:20, blurY:20}, onComplete: scaleBack, onCompleteParams:[letter]}); } //This function is called when a letter’s scaleX is -1 function scaleBack(letter:MovieClip):void { //Animate the letter back to original state TweenMax.to(letter, 0.2 , {scaleX: 1, glowFilter:{color:0xffffff, blurX:10, blurY:10}}); } |
6、完工,測(cè)試你的電影。
7、延伸:你可以把舞臺(tái)上的影片剪輯更換為任何元素,任何顏色的光效果。
討論:http://www.missyuan.com/viewthread.php?tid=446771