在系统中,如果在进行耗时的操作,一般都会通知UI告之用户操作正在进行。一般情况下可以设置Cursor来设置鼠标指标的图形来通知UI,但是这样看起来不会特别明显,所以显示一个比较明显的Loading Bar加载条是普遍的选择。 耗时操作分为很多种,根据是否能得到完成的百分比分为"不可预知时间操作"(....
分类:
其他好文 时间:
2014-08-15 01:17:46
阅读次数:
180
jQuery 超屏加载,当文档超出屏幕的高度时,加载最新下个列数据$(window).scroll(function () { var height = $(document).height(); //页面的高度 var keheight = $(window).height(); //...
分类:
Web程序 时间:
2014-08-14 10:24:28
阅读次数:
200
1 console.log('what');this is h1this is contentfunction foo(bar) { console.log(bar); return bar.toString();}
分类:
其他好文 时间:
2014-08-13 22:01:37
阅读次数:
181
由于项目需要,写了个返回顶部的小功能... 1 /*返回顶部*/ 2 function toTop() { 3 $(".to_top").hide(); 4 $(window).scroll(function(){ 5 var ...
分类:
Web程序 时间:
2014-08-13 12:23:26
阅读次数:
221
本篇是iOS 7用户界面过渡指南:更新UI布局和外观(Layout & Appearance)操作栏和栏上按钮(Bars & Bar Buttons)内容视图(Content View)控件(Controls)临时视图(Temporary Views)更新UI布局和外观(Layout & Appea...
分类:
其他好文 时间:
2014-08-13 03:31:15
阅读次数:
520
二维码又称QR Code,QR全称Quick Response,是一个近几年来移动设备上超流行的一种编码方式,它比传统的Bar Code条形码能存更多的信息,也能表示更多的数据类型
分类:
其他好文 时间:
2014-08-13 01:04:34
阅读次数:
272
上讲回顾:Bootstrap组件丰富同时具有良好可扩展性,能够很好地应用在生产环境。这些组件包括按钮(Button),导航(Navigation),缩略图(thumbnails),提醒(Alert),进度条(progress bar)等,能够很好减少前端工程师的代码量,实现更加丰富充实的页面。 .....
分类:
其他好文 时间:
2014-08-12 18:45:44
阅读次数:
226
Round 1(Bar Raiser):Complete discussion on my project.Suppose you have a file with billion entries and you have to sort the data of a file according t...
分类:
其他好文 时间:
2014-08-10 08:07:59
阅读次数:
191
Givennnon-negative integers representing an elevation map where the width of each bar is 1, compute how much water it is able to trap after raining. 1...
分类:
移动开发 时间:
2014-08-10 01:34:09
阅读次数:
375
初次使用scrollview, 发现你在nib中布置好视图后,运行居然不能滚动,请只能说写ios的几位太懒了。
发现问题解决问题吧,是让其滚动必须设置scrollview的contentsize, size需比uiscrollview的frame要大,设成scroll里面的内容大小就可以了,如下
[self.scrollView setContentSize:CGSizeMake(320,...
分类:
移动开发 时间:
2014-08-09 13:28:27
阅读次数:
280