开发中使用的颜色可以分为两种,自定义颜色和系统颜色1.自定义颜色:颜色值的定义是通过RGB三原色和一个alpha值来定义的(加色原理)。以井号(#)开始,后面是Alpha-Red-Green-Blue的格式。形如:#RGB#ARGB#RRGGBB#AARRGGBB通常使用#RRGGBB 或者#AAR...
分类:
移动开发 时间:
2014-12-26 12:33:00
阅读次数:
190
Given an input string, reverse the string word by word.
For example,
Given s = "the sky is blue",
return "blue is sky the".
click to show clarification.
Clarification:
What constitutes...
分类:
其他好文 时间:
2014-12-26 11:14:16
阅读次数:
146
题目:
Given an input string, reverse the string word by word.
For example,
Given s = "the sky is blue",
return "blue is sky the".
click to show clarification.
Clarification:
What co...
分类:
其他好文 时间:
2014-12-25 22:06:30
阅读次数:
276
在一个7x7的表格当中nth-child(1); td.parents("table").find("tr :nth-child(1)").css("background-color", "blue");得到eq(1);td.parents("table").find("tr :eq(1)").cs...
分类:
Web程序 时间:
2014-12-25 17:40:33
阅读次数:
168
伪元素
a:link{
color: green ;
font-size: 1cm ;
}
a:hover{
color: red ;
font-size: 2cm ;
}
a:active{
color: blue ;
font-size: 2cm ;
}
a:visited{
color:...
分类:
Web程序 时间:
2014-12-24 16:24:28
阅读次数:
1012
在给Background赋值时,除了自带的Red,Blue,Black等,可以通过以下方法赋予其他颜色。主要是将Hex转换成ARGB(A:alpha,表示透明度、R:Red、G:Green、B:Blue),其中ARGB取值均在0--255之间 该方法传入的字符串参数可以类似 #21459A 或者 #...
分类:
其他好文 时间:
2014-12-23 15:24:12
阅读次数:
131
NDK 开发哪家强?XX XX 找 Blue Fly .
说到 NDK 开发,其实麻烦的是配置。
在这里不用配置Cygwin ,不用额外操作;不使用 Eclipse ;使用最新的 Android Studio 进行直接编译。...
分类:
移动开发 时间:
2014-12-21 12:45:00
阅读次数:
1035
一、Array ? 1 、创建数组的方式 //Array构造函数(可以去掉new)var?colors0?=?new?Array();var?colors1?=?new?Array(20);var?colors3?=?new?Array("red","blue","green");//数组字面量var?colors4...
分类:
其他好文 时间:
2014-12-19 13:08:30
阅读次数:
229
一、Array 1 、创建数组的方式//Array构造函数(可以去掉new)var colors0 = new Array();var colors1 = new Array(20);var colors3 = new Array("red","blue","green");//数组字面量var c...
分类:
其他好文 时间:
2014-12-19 12:58:29
阅读次数:
204
一、Array
1 、创建数组的方式
//Array构造函数(可以去掉new)
var colors0 = new Array();
var colors1 = new Array(20);
var colors3 = new Array("red","blue","green");
//数组字面量
var colors4 = ["red","blue","green"];
var colors5 = [];
可以根据元素的索引对数组元素进行访问,在数组末尾增加(或者删除)元素可以用colo...
分类:
其他好文 时间:
2014-12-19 12:08:46
阅读次数:
161