使用imcrop函数时,如果rect为空(rect=[]),执行函数后会直接弹出显示的图像,所以在使用imcrop之前一定要检查rect是否为空,否则会不停的弹出图像。
分类:
其他好文 时间:
2014-05-26 14:43:46
阅读次数:
198
CGSize rect =
[info.contentsizeWithFont:self.contentLabel.fontconstrainedToSize:CGSizeMake(self.contentLabel.frame.size.width,
MAXFLOAT)]; self.cont.....
分类:
其他好文 时间:
2014-05-26 07:09:59
阅读次数:
217
declare test_Cursor cursor scroll global for select
* from fktable --声明一个游标,加上scroll支持游标向任何方向移动declare test_Cursor cursor
forward_only global for sele...
分类:
数据库 时间:
2014-05-25 18:48:34
阅读次数:
327
//滚动到指定元素的id处 如:$("#Exam82") function Jump() { var
scroll_offset = $("#Exam82").offset(); //得到Exam82这个div层的offset,包含两个值,top和left
$("body,html").an...
分类:
其他好文 时间:
2014-05-24 01:56:28
阅读次数:
410
1、完全隐藏在里加入scroll="no",可隐藏滚动条;2、在不需要时隐藏指当浏览器窗口宽度或高度大于页面的宽或高时,不显示滚动条;反之,则显示;3、样式表方法在里加入style="overflow-x:hidden",可隐藏水平滚动条;加入style="overflow-y:hidden",可隐...
分类:
Web程序 时间:
2014-05-22 00:37:14
阅读次数:
433
将结构体包装成 NSValue ,并取出结构体1 NSRect rect = {0, 0,
200,200};2 NSValue *rectValue = [NSValue valueWithBytes:&rect
objCType:@encode(NSRect)];3 NS...
分类:
其他好文 时间:
2014-05-19 17:31:28
阅读次数:
246
当用户触摸屏幕的时候,会产生许多手势,例如down,up,scroll,filing等等,我们知道View类有个View.OnTouchListener接口,通过重写他的onTouch(Viewv,MotionEventevent)方法,我们可以处理一些touch事件,但是这个方法太过简单,如果.....
分类:
其他好文 时间:
2014-05-19 08:46:19
阅读次数:
256
package main import ("fmt")//对象定义type Rect
struct{x,y float64width ,height float64} //对象方法实现func (r *Rect)
Area()float64{return r.width*r.height}//Go语...
分类:
其他好文 时间:
2014-05-18 19:36:55
阅读次数:
405
div+css命名规则-增强SEO页头:header登录条:loginBar标志:logo侧栏:sideBar广告:banner导航:nav子导航:subNav菜单:menu子菜单:subMenu搜索:search滚动:scroll页面主体:main内容:content标签页:tab文章列表:lis...
分类:
Web程序 时间:
2014-05-17 19:50:40
阅读次数:
415
遇到一个这样的问题:
有个项目做的好好的,测试时一步一步小心过来,做了一段时间后,发现前面的完成的功能出了问题了
首先描述下出问题的功能:做滚动条下拉加载的时候用的网上找的一种方法$(window).scroll(function(){
if($(document).scrollTop...