快速业务通道

AS3.0实例:鼠标感应发光的文字效果

作者 凌众技术 来源 网页制作 浏览 发布时间 2012-03-08

 这是一个非常简单的教程,将学习用发光滤镜使对象产生发光的效果。注意:这个实例需要 TweenMax 类,请把附件中的gs类库保存在fla同一目录下。

AS3.0发光的文字效果实例

这是一个非常简单的教程,将学习用发光滤镜使对象产生发光的效果。

注意:这个实例需要 TweenMax 类,请把附件中的gs类库保存在fla同一目录下。

演示:


1、新建Flash文件,设置属性:宽高根据舞台上的影片剪辑多少设定,我这里为 550 × 200 ,背景黑色。图1:
sshot-1.png
2、选文本工具,在舞台上输入一些静态的本文。根据需要选择字型和字的大小。颜色选你喜欢的。图2:
sshot-2.png
3、选菜单=>修改=>分离,把文字打散。图3:
sshot-3.png
4、单选每一个字,右键单击转换为影片剪辑。命名根据你的需要,设定注册点为居中。图4:
sshot-4.png
全部完成后库如图5:
sshot-5.png
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、完工,测试你的电影。

7、延伸:你可以把舞台上的影片剪辑更换为任何元素,任何颜色的光效果。

凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢!

分享到: 更多

Copyright ©1999-2011 厦门凌众科技有限公司 厦门优通互联科技开发有限公司 All rights reserved

地址(ADD):厦门软件园二期望海路63号701E(东南融通旁) 邮编(ZIP):361008

电话:0592-5908028 传真:0592-5908039 咨询信箱:web@lingzhong.cn 咨询OICQ:173723134

《中华人民共和国增值电信业务经营许可证》闽B2-20100024  ICP备案:闽ICP备05037997号