触鼠感应的loadMoive框框缩放教程
作者 佚名技术
来源 服务器技术
浏览
发布时间 2012-07-11
今天研究了一个做Flash网站经常会用到的效果,即点击不同的按钮,主场景用来loadMovie的框框的X,Y,H,W值也随着变化. 点击浏览该文件 点击浏览该文件 主要代码如下: stageWidth = 800; stageHeight = 600; wmodifier = 400; hmodifier = 150; bounce = 0.700000; speed = 9; expand = function (id){ this.destwidth = wmodifier; this.poswidth = id._width; this.velwidth = this.velwidth * bounce + (this.destwidth - this.poswidth) / speed; id._width = id._width + Math.round(this.velwidth); this.destheight = hmodifier; this.posheight = id._height; this.velheight = this.velheight * bounce + (this.destheight - this.posheight) / speed; id._height = id._height + Math.round(this.velheight); this.destx = (stageWidth - wmodifier) / 2; this.posx = id._x; this.velx = this.velx * bounce + (this.destx - this.posx) / speed; id._x = id._x + Math.round(this.velx); this.desty = (stageHeight - hmodifier) / 2; this.posy = id._y; this.vely = this.vely * bounce + (this.desty - this.posy) / speed; id._y = id._y + Math.round(this.vely); shadow._width = color_kuai._width + 20; shadow._x = color_kuai._x - 10; shadow._height = color_kuai._height + 20; shadow._y = color_kuai._y - 10; }; color_kuai.onEnterFrame = function (){ expand(this); }; stop(); 源文件里面有详细的说明. 源文件下载: 点击浏览该文件 关键词: |
凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢! |
你可能对下面的文章感兴趣
上一篇: 如何解决setFocus光标停留的问题下一篇: ACT游戏基础-键盘控制人物(走、跑攻击)
关于触鼠感应的loadMoive框框缩放教程的所有评论