[comfort color]
text=dce2e2
text(bold)=dce2e2
cyan=2ad1b8
cyan(bold)=2ad1b8
magenta=dd3682
magenta(bold)=dd3682
green=55bb55
green(bold)=55bb55background=002b35red=dc322f
red(bold)=dc322f
yellow=e5d900...
分类:
系统相关 时间:
2015-04-28 11:56:40
阅读次数:
247
使用java枚举代替字符串或静态变量。
?1.简单使用
颜色枚举类:
public enum ColorEnum {
RED, BLACK, GREE, BLUE
}
调用:
public static void main(String[] args) {
System.out.println(ColorEnum.RED.toString());
System.out.p...
分类:
编程语言 时间:
2015-04-28 11:46:38
阅读次数:
107
rgba 是由red、green、blue 三种颜色搭配出来的box-shadow 向元素添加阴影层,水平阴影位置,垂直阴影位置,后面是可选:模糊距离,阴影大小,颜色,是否是内部阴影text-shadow 向文本添加一个或多个阴影,水平阴影位置,垂直阴影位置,模糊的距离,阴影颜色...
分类:
Web程序 时间:
2015-04-27 21:44:30
阅读次数:
125
The CentOS Linux distribution is a stable, predictable, manageable and reproduceable platform derived from the sources of Red Hat Enterprise Linux (RH...
分类:
其他好文 时间:
2015-04-27 20:04:21
阅读次数:
253
关于备份恢复一直是所有关系型数据库的重头戏。下面会介绍冷备数据库,并模拟破坏数据文件进行恢复数据库,并涉及到其他相关内容。
[oracle@localhost ~]$ cat /etc/redhat-release
Red Hat Enterprise Linux Server release 5.5 (Tikanga)
SQL> select * from v$version where ...
分类:
数据库 时间:
2015-04-27 18:30:35
阅读次数:
134
public void paint(Graphics g) { // TODO 自动生成的方法存根 int h=400; int pix[]=new int[w*h]; int dex=0; for(int i=0;i<h;i++){ int red=(i*255)/(h-1); ...
分类:
其他好文 时间:
2015-04-27 18:18:43
阅读次数:
133
ARGB—Alpha,Red,Green,Blue 一种色彩模式,也就是RGB色彩模式附加上Alpha(透明度)通道,常见于32位位图的存储结构。 Alpha,图像通道,全强度为FF,表示无透明度,即不透明;无强度为00 ,表示全透明。因此,透明像素颜色值为 Alpha位-00,Red位...
分类:
其他好文 时间:
2015-04-27 16:46:10
阅读次数:
224
$("#content").attr("style","width:50px;color:red")//设置style属性的值$("#content").css({"width":"50px","color":"red"})//也是设置style属性的值这二句是等价的,attr指向的是签标的属性,s...
分类:
Web程序 时间:
2015-04-27 12:58:08
阅读次数:
150
lang="en">
charset="UTF-8">
type="text/css">
#box{width:100px;height:100px;background:red;position: absolute;left:0;}
span{height:900px;border-left:1px red solid;po...
分类:
其他好文 时间:
2015-04-27 11:22:20
阅读次数:
118
#div1{width:100px;height:100px;background:red;position: absolute;}
window.onload=function()
{
var oDiv=document.getElementById("div1");
var dis...
分类:
其他好文 时间:
2015-04-27 11:20:26
阅读次数:
137