计时效果(正,倒)
作者 佚名技术
来源 服务器技术
浏览
发布时间 2012-07-11
点击浏览该文件 本来想写个教程的,有些懒惰,也比较忙,所以就不写了!把源码提供给大家,看不明白的话就跟帖子问下: 主要代码: onClipEvent(load){ OK1=false; OK2=false; } onClipEvent(enterFrame){ if(OK1){//倒数计时; a=getTimer()-_root.time1; totaltime=_root.min*60*1000+_root.sec*1000; nowtime=totaltime-a; this.txt_m=int(int(nowtime/1000)/60); this.txt_s=((int(nowtime/1000))-(int(int(nowtime/1000)/60))*60); this.txt_mm=int((nowtime-this.txt_m*60*1000-this.txt_s*1000)/10); if((this.txt_m==0)&&(this.txt_s==0)&&(this.txt_mm==0)){ _root.warning="time out!" this.OK1=false; } } if(OK2){//正数计时; b=getTimer()-_root.time1; this.txt_m=int(int(b/1000)/60); this.txt_s=((int(b/1000))-(int(int(b/1000)/60))*60); this.txt_mm=int((b-this.txt_m*60*1000-this.txt_s*1000)/10); if((this.txt_m==_root.min)&&(this.txt_s==_root.sec)){ _root.warning="time out!" this.OK2=false; } } } 用按钮控制ok1 ,ok2的值 实现正数与倒数计时; FLA: 点击浏览该文件 关键词: |
凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢! |
你可能对下面的文章感兴趣
上一篇: FLASH中制作3D效果下一篇: AS轻松实现画多边形
关于计时效果(正,倒)的所有评论