让上升的泡泡旋转起来
作者 佚名技术
来源 服务器技术
浏览
发布时间 2012-07-11
首先声名泡泡是别人做的(忘了是在帝国还是哪儿),只是看着直着上升不自然,就改了改。先看效果: 点击浏览该文件 代码: H = 550; W = 400; r = random(360); ballNum = 30; i = 1; while (i this["ball"+i]._x = Math.random()*W; this["ball"+i]._y = Math.random()*H; this["ball"+i]._alpha = (Math.random()*70)+30; this["ball"+i]._rotation = r+random(360); v = 5; vx = (Math.random()*10)-5; rrr = Math.random()*2; if (rrr>1) { vy = Math.sqrt((v*v)-(vx*vx)); } else { vy = -Math.sqrt((v*v)-(vx*vx)); } this["ball"+i].vx = vx; this["ball"+i].vy = vy; i++; } _root.onEnterFrame = function() { i = 1; while (i this["ball"+i]._y = this["ball"+i]._y+this["ball"+i].vy; if (this["ball"+i]._x>=W) { this["ball"+i]._x = 0; } if (this["ball"+i]._x<=0) { this["ball"+i]._x = W; } if (this["ball"+i]._y>=H) { this["ball"+i]._y = 0; } if (this["ball"+i]._y<=0) { this["ball"+i]._y = H; } if (i%2 == 0) { //奇偶判断 this["ball"+i]._rotation += 5; } else { this["ball"+i]._rotation -= 5; } i++; } }; 红字部分为自己所加。 原文件: 点击浏览该文件 关键词: |
凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢! |
你可能对下面的文章感兴趣
上一篇: 流光效果(图片教程)下一篇: 海豚制作全过程
关于让上升的泡泡旋转起来的所有评论