文件名称:as3.0 雪花随机下落
文件大小:9KB
文件格式:ZIP
更新时间:2015-12-08 05:14:10
as3.0 雪花飘落
as3.0 雪花随机飘落: package { import flash.display.MovieClip; import flash.events.*; public class SNOW extends MovieClip{ var speedx:Number=0; var speedy:Number=0; public function SNOW() { speedx=5*Math.random()-0.5; speedy=5*Math.random(); this.addEventListener(Event.ENTER_FRAME,Mot); // constructor code } function Mot(e:Event){ this.x+=speedx; this.y+=speedy; if(this.y>400){ init(); } } function init(){ this.y=0; this.x=Math.random()*550; } } }
【文件预览】:
snow
----SNOW.as(522B)
----snow.swf(2KB)
----snow.fla(7KB)