很棒的特效,能用于表达做梦的效果,希望大家喜欢
1:打开2004,新建一个MC,画一个红色的光环,如图:
2:在第一帧输入下面的代码:
_quality="LOW"
function go(){
nowy = attachMovie("mc","m"+a,10+a)
nowy._x=200
nowy._y=150
nowy._alpha=10
nowy._rotation=random(360)
nowy._xscale=nowy._yscale=40+random(100)
nowy.onEnterFrame = function(){
this._rotation+=Math.sin(this.z+=.3)*10
this._xscale=this._yscale+=Math.sin(this.o+=.2)*20
this.col=new Color(this);
this.col.setRGB(127*Math.sin(this.r+=.8)+128<<16|127*Math.sin(this.g+=.2)+128<<8|127*Math.sin(this.b+=.1)+128);
}
a++
if (a>30) clearInterval(id)
}
var id = setInterval(go,250)
3:然后CTRL+回车,看看效果把,是不是很酷啊~简单把?
点击浏览该文件 点击浏览该文件