上讲回顾:Bootstrap的基础CSS(Base CSS)提供了优雅,一致的多种基础Html页面要素,包括排版,表格,表单,按钮等,能够满足前端工程师的基本要素需求。 Bootstrap作为完整的前端工具集,内建了大量的强大优雅可重用的组件,包括按钮(Button),导航(Navigation.....
分类:
其他好文 时间:
2014-08-02 09:52:13
阅读次数:
415
主题 1. 创建状态栏并显示 2. 在状态栏中显示进度条 3. MDI文档显示和隐藏状态栏 4. 5. 代码::创建状态栏 并显示...
分类:
编程语言 时间:
2014-08-01 22:37:02
阅读次数:
279
第一部分 个性化控件(View)主要介绍那些不错个性化的View,包括ListView、ActionBar、Menu、ViewPager、Gallery、GridView、ImageView、ProgressBar及其他如Dialog、Toast、EditText、TableView、Activit...
分类:
移动开发 时间:
2014-08-01 19:01:12
阅读次数:
386
主题 android:theme------->必须不能使Theme.Light.NoTitleBar否则不起作用requestWindowFeature(Window.FEATURE_PROGRESS); setContentView(R.layout.progressbar...
分类:
移动开发 时间:
2014-08-01 15:42:01
阅读次数:
399
使用进度条查看浏览器状态 procedure TForm1.WebBrowser1ProgressChange(ASender: TObject; Progress,ProgressMax: Integer);beginProgressBar1.Max:=ProgressMax;if Progres...
分类:
其他好文 时间:
2014-08-01 12:57:31
阅读次数:
168
不多说,直接上脚本。
# processbar
processbar() {
local current=$1; local total=$2;
local maxlen=80; local barlen=66; local perclen=14;
local format="%-${barlen}s%$((maxlen-barlen))s"
local perc="[$cu...
分类:
其他好文 时间:
2014-08-01 10:53:01
阅读次数:
257
最近的项目,有个需求需要使用条状图显示比例,并且右对齐,这里对比了三种实现方案。
最终方案:利用Drawable本身的属性,反向绘制进度条。这里将backgroud注释掉,不现实backgroud,然后对前景色,加上两个关键属性:android:clipOrientation="horizontal",android:gravity="right",这样就做到从右到左画进度条。...
分类:
移动开发 时间:
2014-07-31 13:25:36
阅读次数:
202
闪亮的进度条效果。我喜欢粒子演示作品,特别是那些能够应用于实际的,例如这个由 Jack Rugile 编写的进度条效果。看着这么炫的 Loading 效果,即使让我多等一会也无妨:)你呢?
分类:
Web程序 时间:
2014-07-31 09:45:56
阅读次数:
311
在电商网站中,有时候通过进度条来直观地显示用户是否到期以及用户当前的状态。 设计这样的一个Model。 public class User { public int Id { get; set; } public string Name { get; set; } public int CoopTi...
分类:
Web程序 时间:
2014-07-30 00:55:02
阅读次数:
266
1 using System; 2 using System.Collections.Generic; 3 using System.ComponentModel; 4 using System.Data; 5 using System.Drawing; 6 using System.T...
分类:
其他好文 时间:
2014-07-29 21:39:22
阅读次数:
243