RGB颜色对照表 #FFFFFF #FFFFF0 #FFFFE0 #FFFF00 #FFFAFA #FFFAF0 #FFFACD #FFF8DC #FFF68F #FFF5EE #FFF0F5 #FFEFDB #FFEFD5 #FFEC8B #FFEBCD #FFE7BA #FFE4E1 #FFE4 ...
分类:
移动开发 时间:
2017-12-21 17:18:55
阅读次数:
202
题目: Given an array with n objects colored red, white or blue, sort them so that objects of the same color are adjacent, with the colors in the order r ...
分类:
编程语言 时间:
2017-12-21 11:50:59
阅读次数:
202
Page({ data: { items:{ //items为一个对象,is_like和like分别为其两个属性 is_like: 0, like: 0 } }, likes: function () { var is_like ="items.is_like"; var like = "items ...
分类:
微信 时间:
2017-12-20 22:15:30
阅读次数:
433
Implement atoi to convert a string to an integer. Hint: Carefully consider all possible input cases. If you want a challenge, please do not see below ...
分类:
其他好文 时间:
2017-12-20 20:14:02
阅读次数:
208
参考文档: btree索引数据结构: http://www.oschina.net/question/565065_86338 btree索引和hash索引的比较 http://mxdxm.iteye.com/blog/2196229 http://www.cnblogs.com/xiaoboluo ...
分类:
数据库 时间:
2017-12-20 18:57:28
阅读次数:
178
.text-ellipsis { width:100px; height:60px; overflow: hidden;//隐藏滚动条 text-overflow:ellipsis; white-space: nowrap; } .span-text { display: block; } ...
分类:
Web程序 时间:
2017-12-20 17:58:35
阅读次数:
196
本篇主要说明表单控件的数据绑定,这次没有新的知识点 文本框 1、普通文本框 2、数字文本框 .number参数会强制把返回值转成Number类型,因为就算是type="number",返回的也是字符串型 3、多行输入框 style="white-space:pre"表示空白会被浏览器保留。其行为方式 ...
分类:
Web程序 时间:
2017-12-19 19:42:12
阅读次数:
256
//状态栏类型public static final int STATUSBAR_TYPE_TRANSPARENT_WHITE = 1; //状态栏类型为透明底部,白色字体图标public static final int STATUSBAR_TYPE_WHITE_BLACK = 2; //状态栏类 ...
分类:
其他好文 时间:
2017-12-19 19:27:57
阅读次数:
179
1、多行文本溢出省略 display:-webkit-box; -webkit-box-orient;vertical; -webkit-line-clamp:3; overflow; 单行文本溢出 overflow:hidden; text-overflow:ellipsis; white-spa ...
分类:
其他好文 时间:
2017-12-19 12:32:05
阅读次数:
174
1. word-break:break-all;只对英文起作用,以字母作为换行依据 2. word-wrap:break-word; 只对英文起作用,以单词作为换行依据 3. white-space:pre-wrap; 只对中文起作用,强制换行 4. white-space:nowrap; 强制不换... ...
分类:
Web程序 时间:
2017-12-19 01:44:49
阅读次数:
175