我经常会不停地发布当前的版本,从而可以在GitHub上得到不断的反馈。我的开发模式是不断的迭代。在开始的时候,我不会太关注它在手机上的效果,其实到目前我也没有关注这个问题。但其实我使用了一个简单的解决方案。
分类:
其他好文 时间:
2014-09-10 15:34:10
阅读次数:
194
无限滚动(Infinite Scroll)也成为自动分页、滚动分页和无限分页。常用在图片、文章或其它列表形式的网页中,用来在滚动网页的时候自动加载下一页的内容。Infinite Scroll 这款 jQuery & WordPress 无限滚动插件可以帮助你轻松实现这个效果。
分类:
Web程序 时间:
2014-09-09 15:39:18
阅读次数:
210
//实际项目中可以直接用GUI插件做个退出提示框。美观又和谐。public float uTime = 2; void OnGUI() { if (uTime < 2) { GUI.Label(new Rect(Screen.width/2...
分类:
其他好文 时间:
2014-09-09 12:02:08
阅读次数:
168
voiddraw(){
rect(20,20,60,60);
}
voidmousePressed(){
link("http://processingjs.org");
}
link(url);
link(url,target)
分类:
其他好文 时间:
2014-09-09 09:11:08
阅读次数:
185
voidsetup(){size(200,200);rectMode(CENTER);noFill();translate(100,100);for(inti=1;i<16;i++){rotate((PI/16)*i);rect(0,0,100,100);}}
分类:
其他好文 时间:
2014-09-09 09:10:58
阅读次数:
211
1.简介 构造数据类型PdfString封装Rect类,PdfAnalyzer类中定义一些PDF解析方法。2.PdfString类与Rect类public class PdfString : IComparable { public string Words { get; set...
分类:
其他好文 时间:
2014-09-07 01:01:44
阅读次数:
201
实现自定义View的关键是重载UIView的drawRect: 方法,因为主要是通过重载这个方法,来改变view的外观。例如:- (void)drawRect:(CGRect)rect { // 绘图 CGRect bounds = [self bounds]; // Where ...
分类:
其他好文 时间:
2014-09-05 00:53:10
阅读次数:
274
One of the UI features of lists on Windows Phone 7 is that the "scroll bars" don't really act like traditional scroll bars; they are non-interactive a...
分类:
其他好文 时间:
2014-09-04 01:34:37
阅读次数:
187
在windows下键盘背景灯光通过Scroll按键是可以正常亮起和关闭的,但是发现在ubuntu下怎么按Scroll键都不会亮起,So百度之,用了个脚本设置一下即可#!/bin/bash - #=====================================================...
分类:
其他好文 时间:
2014-09-03 12:46:46
阅读次数:
238