码迷,mamicode.com
首页 >  
搜索关键字:property animation    ( 11147个结果
CSS跨浏览器(转)
本文将介绍兼容IE+、FF、Chrome、Safari、Opera的技巧一、CSS HACK专门为某版本的浏览器设置样式,从而解决浏览器显示的差异selector { +property:value; } 在属性名前加上加号"+",这个Hack只有IE系列可以识别.selector { *prope...
分类:Web程序   时间:2014-06-06 22:37:35    阅读次数:385
UINavigationController的子控制器
?UINavigationController以栈的形式保存子控制器@property(nonatomic,copy)NSArray*viewControllers;@property(nonatomic,readonly)NSArray*childViewControllers;?使用push方法...
分类:其他好文   时间:2014-06-06 20:03:23    阅读次数:310
iOS.UIKit.14.UITableView -- UISearchBar
1、案例介绍:一个具备搜索功能的表视图,如图01,02,03图01图02图032、Main.storyboard,如图04图043、.h#import @interface CQ23ViewController : UITableViewController// 搜索栏@property (weak...
分类:移动开发   时间:2014-06-06 14:45:32    阅读次数:326
iOS.UIKit.17.UITableView -- Cells Operation
1、案例介绍:表视图中单元格的增加、删除、移动,如图01,02图01图022、.h#import @interface CQ26ViewController : UIViewController@property (weak,nonatomic) IBOutlet UINavigationItem ...
分类:移动开发   时间:2014-06-06 14:21:33    阅读次数:340
unrecognized selector sent to instance
[iOS] Error Fixed : [__NSArrayI addObject:]: unrecognized selector sent to instance当我创建了一个NSMutableArray 对象的时候@property(nonatomic,copy)NSMutableArray*...
分类:其他好文   时间:2014-06-06 08:18:29    阅读次数:291
CSS3之animation
浏览器支持:Internet Explorer 10、Firefox 以及 Opera 支持 animation 属性。Safari 和 Chrome 支持替代的 -webkit-animation 属性。注释:Internet Explorer 9 以及更早的版本不支持 animation 属性。...
分类:Web程序   时间:2014-06-05 15:49:55    阅读次数:282
使用 Core Animation 实现图片的碎片化----
用 Core Animation 实现图片的碎片化参考书籍:效果如下:原理其实非常简单哦:)。1. 创建一个CALayer,使用其 contents 属性来装载一张图片(获取图片的CGImage)2. 根据frame值裁剪图片,然后将裁剪的图片赋给你创建的更小的CALayer3. 实现这些更小的CA...
分类:其他好文   时间:2014-06-05 13:20:27    阅读次数:457
利用put上传文件到服务器
#import "KUViewController.h"#import "KUProgress.h"@interfaceKUViewController ()//下载进度的类,继承UIview@property (weak, nonatomic) IBOutlet KUProgress *progr...
分类:其他好文   时间:2014-06-04 14:39:23    阅读次数:328
[cocos2d-x]-会动的精灵
小鸟一直在扑翅膀的代码块: auto sprite = Sprite::create(); Animation *animation = Animation::create(); animation->addSpriteFrameWithFileName("bird_blue_1.png"); animation->addSpriteFrameWithFileName("bird_blu...
分类:其他好文   时间:2014-06-04 14:01:08    阅读次数:308
android 进度条
在之前实现自定义进度条的时候,基本上都是使用ImageView来实现的,见 ?? Android 用Animation-list实现逐帧动画,最近一段时间看到APP的进度条很多都是ProgressBar然后圆圈里面是一张图片,所以就查看了一下ProgressBar的使用。 1、动画实现     定义res/anim/loading.xml,例如: <animation-list and...
分类:移动开发   时间:2014-06-04 13:48:12    阅读次数:385
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!