
常用软件类: |
|杀毒安全 | |联络聊天 | |网络软件 | |多媒体类 | |系统工具 | |图形图像 | |系统工具 | |应用软件 | |行业软件 |
开发设计类: |
|动画制作 | |图像处理 | |3D设计 | |操作系统 | |站长学院 | |网络相关 | |WEB设计 | |数据库类 | |程序开发 |
先看我做的效果:
制作步骤:
新建立Flash文档,按Ctrl+J修改属性,效果如下:

然后导入一幅图片:

然后打开库,双击导入的图片,修改属性为平滑:

然后按Ctrl+K打开对齐面板,设置如下:

把该图片转换成电影剪辑元件:

把图层1改名为Spin MovieClip。然后双击舞台上的影剪辑元件,

然后选择Actionscript层的第1帧后按F9打开动作面板,输入下面指令:
speed = 0;
// Acceleration speed.
accel = .1;
// Every frame execute the following code.
this.onEnterFrame = function(){
// Increment speed by the acceleration.
speed = Math.round((speed + accel)*100)/100;
// Rotate the shape by the current spin speed.
_rotation += speed;
}
制作完毕!按Ctrl+Enter测试吧。