手机站
网通分站
电信主站
密 码:
用户名:
当前位置 : 主页>网页制作>Flash>列表

Flash制作环绕的立体图片效果动画

来源:互联网 作者:west263.com 时间:2008-04-02
西部数码-全国虚拟主机10强!40余项虚拟主机管理功能,全国领先!双线多线虚拟主机南北访问畅通无阻!免费赠送企业邮局,.CN域名,自助建站480元起,免费试用7天,满意再付款! P4主机租用799元/月.月付免压金!

  代码如下:

  
var totalPhotoBL:Number = 7;

  //图片总张数;

  var angleBL:Number = 2*Math.PI/(totalPhotoBL-1);

  //角度值,用于平均分配任何图在360度里;

  var scaleBL:Number = 30;

  //缩放比例值;

  var speedBL:Number = Math.PI/180;

  // 声明一个速度值;

  for (var i = 0; i<totalPhotoBL; i ) {

  duplicateMovieClip(photoMC, "newMC" i, i);

  this["newMC" i].gotoAndStop(i 1);

  this["newMC" i].angleBL = i*angleBL;

  this["newMC" i].onEnterFrame = function() {

  this.angleBL -= speedBL;

  this.c = 2-Math.abs(Math.cos(this.angleBL/2 90*speedBL))

  this._y = 90;

  this._alpha=90*this.c*this.c

  this._x = Math.sin(this.angleBL)*250 275;

  this._xscale = Math.cos(this.angleBL)*20*this.c;

  this._yscale = 15*this.c;

  this.depth = Math.round(this.c*100);

  this.swapDepths(this.depth);

  };

  }


文章整理:西部数码--专业提供域名注册虚拟主机服务
http://www.west263.com
以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢!