滚动条延迟加载jQuery(function($){ var topicBoxTopHeight = jQuery('#topicBox').offset().top; var topicBoxTopHeight_show = 1 $(window).scroll(function...
分类:
Web程序 时间:
2014-07-28 23:32:54
阅读次数:
238
效果如图:
listview的数据加载,主要用了Scroll监听来判断其位置是否需要加载信息,如果需要加载信息就先显示加载数据的view,然后进行数据的加载,加载完成后,设加载数据的view不可见,如果加载数据的时候数据位null,这时就移除这个view。
listView.addFooterView(moreView); // 添加底部view(上图中的数据加载中...),一定要在set...
分类:
其他好文 时间:
2014-07-28 00:25:29
阅读次数:
231
题意:有n个地方,现在要站人进去,而每两个人之间至少要隔k个空地,问这n个地方能站的人数的期望是多少。分析:考虑dp[i]表示 i 个地方能站的期望数,从左往右推,如果i-k-1=1的话,如果第一个人站在第1个位置,那么右边会空出i-k-1个位置,如果站在2位置,那么右边会空出i-k-2个位置......
分类:
其他好文 时间:
2014-07-27 23:01:39
阅读次数:
195
1.#define保护使用#define防止头文件被多重包括。命名格式为:___H_比如,foo中的头文件foo/src/bar/baz.h#ifndef FOO_BAR_BAZ_H_#define FOO_BAR_BAZ_H_...#endif //FOO_BAR_BAZ_H_2.头文件依赖使用前...
分类:
编程语言 时间:
2014-07-27 21:29:35
阅读次数:
263
首先info.plist文件中,加入View controller-based status bar appearance项
如果设为YES,则View controller对status bar的设置优先级高于application的设置;设置为NO则以application的设置为准。
虽然7.0SDK后在UIViewController中也加入加入了
- (UIStatusBa...
分类:
移动开发 时间:
2014-07-26 17:24:02
阅读次数:
472
1. 判断元素是否有滚动条 1 /* 2 1. 浏览器在没有滚动条的时候,scrollLeft/scrollTop赋值后不会发生变化,始终是0; 3 2. scrollLeft,scrollTop为负数值时会报错 4 */ 5 var scroll = function (elm) { 6 ...
分类:
Web程序 时间:
2014-07-26 17:06:01
阅读次数:
270
题目:Given n non-negative integers representing the histogram's bar height where the width of each bar is 1, find the area of largest rectangle in the ....
分类:
编程语言 时间:
2014-07-26 09:53:57
阅读次数:
273
元素控件尺寸(pts)Window(含状态栏)320 x 480Status Bar的高度20Navigation Bar的高度44含Prompt的Navigation Bar的高度74Navigation Bar的图标20×20(透明的png)Tool Bar的高度44Tool Bar的图标20×...
分类:
移动开发 时间:
2014-07-25 23:59:36
阅读次数:
597
1 #include 2 #include 3 #include 4 #include 5 6 7 void *thread_foo_func(void *); 8 void *thread_bar_func(void *); 9 10 11 int global = 4;12 13 ...
分类:
其他好文 时间:
2014-07-25 14:00:51
阅读次数:
252
Givennnon-negative integers representing the histogram's bar height where the width of each bar is 1, find the area of largest rectangle in the histog...
分类:
其他好文 时间:
2014-07-24 22:39:53
阅读次数:
252