一。重要方法1.translate2.scale3.rotate二。注意1.明确顺序canvas.rotate(45);canvas.drawRect(new
Rect(50, 50, 100, 100), paint);如果顺序调换,则没有旋转的效果2.转换的时候,需要把转换的中心点移到shape...
分类:
移动开发 时间:
2014-06-11 12:48:30
阅读次数:
379
Android2.3的overflow问题在android2.3及以下系统版本的浏览器不支持overflow:scroll
/
auto,即在页面元素里面的内容如果超过了父元素或祖先元素的高度是无法滚动的,可以通过css3的transform来实现滚动,代表作:iscroll。Android2.3的...
分类:
Web程序 时间:
2014-06-07 08:03:09
阅读次数:
390
要实现这个功能,可以通过https://github.com/sroze/ngInfiniteScroll这个第三方控件来实现。步骤如下:1.
下载ng-infinite-scroll.js程序http://sroze.github.io/ngInfiniteScroll/
目前版本是1.0.02....
分类:
Web程序 时间:
2014-06-06 12:30:13
阅读次数:
358
列表控件可以看作是功能增强的ListBox,它提供了四种风格,而且可以同时显示一列的多中属性值。MFC中使用CListCtrl类来封装列表控件的各种操作。通过调用
BOOL Create( DWORD dwStyle, const RECT& rect, CWnd* pParentWnd, UINT...
分类:
其他好文 时间:
2014-06-05 20:47:12
阅读次数:
404
今天原本想模仿2048 游戏的。
但是在设计背景环境时,涉及到绘图的知识!于是就开始对绘图进行了一翻学习。 若想自己绘图必须 写自己的View(继承UICView);然后重写UIView
中的drawRect:rect 方法 -(void)drawRect:(CGRent)rect{ //...
分类:
其他好文 时间:
2014-06-04 19:09:33
阅读次数:
243
想写这个框架很长时间了,一直没有时间,断断续续写了一些,端午节这两天宅在家把它完成了。兼容ie9+以上windowphone,android,ios等支持现代浏览器的移动端。支持多层嵌套scroll和页面多scroll,随时改变宽度和改变内容对scroll无影响,开发者只需关注内容和业务逻辑。废话少...
分类:
移动开发 时间:
2014-06-02 16:05:21
阅读次数:
294
UIScrollView:常用属性@property(nonatomic)
UIEdgeInsets contentInset; // default UIEdgeInsetsZero. add additional scroll
area around content@prop...
分类:
移动开发 时间:
2014-06-01 23:53:28
阅读次数:
505
1 #include 2 #include 3 4 #define mymax(a, b)
(a>b) ? a:b 5 6 typedef struct { 7 int x, y, c; 8 } rect_st; 9 10 rect_st
rects[15];11 12 int d...
分类:
其他好文 时间:
2014-05-30 04:35:16
阅读次数:
200
一、可以通过代码的方式创建UIButton1、通用实例化对象方法:UIButton *button =
[[UIButton alloc] initWithFrame:rect];2、快速实例化对象方法:UIButton *button = [UIButton
buttonWithType:UIBu...
分类:
其他好文 时间:
2014-05-29 19:11:52
阅读次数:
360
.oLi-lists-scroll::-webkit-scrollbar { width:5px;
padding:1px; background:url(../images/repeat-bar.png) repeat-y;}/* Track
*/.oLi-lists-scroll::-webki...
分类:
Web程序 时间:
2014-05-29 19:02:39
阅读次数:
386