码迷,mamicode.com
首页 >  
搜索关键字:delay    ( 1478个结果
CSS3 animation 逐帧动画
前言css3 loading动画animation介绍定义和用法animation属性是一个简写属性,用于设置六个动画属性。animation: name duration timing-function delay interation-count direction;值描述animation-n...
分类:Web程序   时间:2015-07-01 17:48:42    阅读次数:555
Python - Timer Threads
ATimerstarts its work after a delay and can be canceled at any point within that delay time period.ThreadingPython includes sophisticated tools for ma...
分类:编程语言   时间:2015-06-25 12:20:32    阅读次数:177
关于OC中的几种代码延迟执行方式
第一种:[UIView animateWithDuration:3 delay:3 options:1 animations:^{ self.btn.transform = CGAffineTransformMakeTranslation(300, 400); } completion:^(...
分类:其他好文   时间:2015-06-24 23:53:25    阅读次数:131
iOS进阶——可取消的block
+ (id)performBlock:(void (^)())aBlock onQueue:(dispatch_queue_t)queue afterDelay:(NSTimeInterval)delay{ NSParameterAssert(aBlock != nil); __bloc...
分类:移动开发   时间:2015-06-24 18:01:16    阅读次数:534
DS18B20-Onewire Bus-单总线 单片机读取温度
DS18B20,单片机,11.0592MHZ #ifndef __DELAY_H__ #define __DELAY_H__ /*------------------------------------------------ uS延时函数,含有输入参数 unsigned char t,无返回值 unsigned char 是定义无符号字符变量,其值的范围是 0~255 这里使用晶振12M...
分类:其他好文   时间:2015-06-19 00:05:28    阅读次数:165
Android:注册一个方向传感器的回调,能够让app常驻内存不被杀死
随便什么地方加上一段代码就行了: OrientationEventListener mOrientationListener = new OrientationEventListener(this, SensorManager.SENSOR_DELAY_UI) { public void onOrientationChanged(int orientatio...
分类:移动开发   时间:2015-06-18 11:48:06    阅读次数:183
Freemaker配置文件详解
classic_compatible=true ##如果变量为null,转化为空字符串,比如做比较的时候按照空字符做比较whitespace_stripping=true ##去掉多余的空格,非常有用##模版更新事件,设置为1秒,正式环境设置为3600秒 #template_update_delay...
分类:其他好文   时间:2015-06-18 09:26:52    阅读次数:121
NSObject分类
- (void)performSelector:(SEL)aSelector withObject:(id)anArgument afterDelay:(NSTimeInterval)delay inModes:(NSArray *)modes;- (void)performSelector:(SE...
分类:其他好文   时间:2015-06-15 18:07:57    阅读次数:108
转变思维--使用Python生成Shell命令,批量执行程序
近日经常遇到在Linux shell中批量执行相似命令的情况。比如执行如下命令: gifsicle --delay=100 gif/App_1_hour_*_down.gif > combine_gif/App_1_hour_down.gif gifsicle --delay=100 gif/App_1_hour_*_up.gif > combine_gif/App_1_hour_up.gif ...
分类:编程语言   时间:2015-06-13 11:21:35    阅读次数:205
Fair Scheduler中的Delay Schedule分析
延迟调度的主要目的是提高数据本地性(data locality),减少数据在网络中的传输。对于那些输入数据不在本地的MapTask,调度器将会延迟调度他们,而把slot分配给那些具备本地性的MapTask。 延迟调度的大体思想如下: 若该job找到一个node-local的MapTask,则...
分类:其他好文   时间:2015-06-11 10:44:20    阅读次数:238
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!