setInterval()函数public function setInterval(closure:Function, delay:Number,...arguments):uint语言版本:ActionScript 3.0运行时版本:AIR 1.0, Flash Player 9以指定的间隔(以...
分类:
其他好文 时间:
2014-07-25 14:09:01
阅读次数:
312
java定时器的使用定时器类Timer在java.util包中。使用时,先实例化,然后使用实例的schedule(TimerTask task, long delay)方法,设定指定的任务task在指定的延迟delay后运行。定时器任务类TimerTask是抽象类,继承并重写其run()方法,可实....
分类:
编程语言 时间:
2014-07-24 22:55:43
阅读次数:
240
内容参见:http://css-infos.net/properties/webkit具体的定义网页里有详细说明。做有一些html5的应用的时候如果不能很好的适应手机,可以到这上面去找找方法-webkit-animation-webkit-animation-delay-webkit-animati...
分类:
Web程序 时间:
2014-07-24 17:19:45
阅读次数:
216
#include #define CPU_F ((double)12000000)//cpu frequency12000000#define delay_us(x) __delay_cycles((long)(CPU_F*(double)x/1000000.0))#define delay_ms(...
分类:
其他好文 时间:
2014-07-23 20:53:15
阅读次数:
221
-webkit-animation:仍旧是一个复合属性,-webkit-animation: name duration timing-function delay iteration_count direction;包括以下几个属性(1) -webkit-animation-name 这个属性的....
分类:
Web程序 时间:
2014-07-23 14:51:26
阅读次数:
276
#include "stm32f10x.h"
#include "led.h"
#include "delay.h"
#include "sys.h"
int main(void)
{
delay_init();
LED_Init();
while(1)
{
LED0=0;
LED1=1;
delay_ms(300);
LED0=1;
LED1=0;
delay_ms...
分类:
其他好文 时间:
2014-07-23 13:34:56
阅读次数:
249
There's a couple of Nike Hyperrev For Sale Delay climax frames lead that will list for this calendar month. The actual athletic shoes certainly range ...
分类:
其他好文 时间:
2014-07-19 09:21:43
阅读次数:
323
func delay(delay:Double, closure:()->()) { dispatch_after( dispatch_time( DISPATCH_TIME_NOW, Int64(delay * Double(NSEC...
分类:
其他好文 时间:
2014-07-13 22:03:07
阅读次数:
281
(一) 背景介绍在传统的嵌入式系统软件按中通常实现 Delay(N) 函数的方法为:for(i=0;i<=x;i++); x--; 对应于N毫秒的循环值对于STM32系列微处理器来说,执行一条指令只有几十个ns,进行for循环时,要实现N毫秒的x值非常大,而且由于系统频率的宽广,很难计...
分类:
其他好文 时间:
2014-07-12 15:44:14
阅读次数:
269
翻译一篇关于移动浏览器300ms延迟的有用文章,原文地址 http://updates.html5rocks.com/2013/12/300ms-tap-delay-gone-away
去掉移动设备浏览器上的300ms点击延迟
你可以在网站上找到很多关于在为了快速流畅的网站用户体验,在某个地方减少10ms或90ms的文章。不幸的是,在基于触屏的...
分类:
移动开发 时间:
2014-07-06 12:38:53
阅读次数:
422