菜单栏 windows–>preferences–>general–>editors–>text editors中在Appearance color options下修改 background color为(将system default前的勾点掉)red:204;green:232;blue:20...
分类:
系统相关 时间:
2015-04-29 16:30:26
阅读次数:
278
1 public class TestEnum { 2 public enum MyColor{ red , blue ,green }; 3 4 public static void main (String[] args){ 5 MyColor m =...
分类:
编程语言 时间:
2015-04-29 00:15:56
阅读次数:
263
学习iOSUI阶段第三天掌握了一些视图相关的技巧,于是想到做个小app来巩固一下。
晚上没事就做了这个点灯的小游戏。
关于点灯游戏的相关信息参考百度百科。
一下是我的实现步骤:
第一步:素材准备
准备好两张图片作为游戏中灯的两种状态,一张名为red.jpg(代表灯灭),另一张为:blue.jpg(代表灯亮)。
第二步:制作游戏布局...
分类:
移动开发 时间:
2015-04-28 21:04:46
阅读次数:
156
使用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
<scripttype="text/javascript">//工厂方式//1、原始方式/*varobjCar=newObject();objCar.name="劳斯莱斯";objCar.color="blue";objCar.showColor=function(){alert(this.color);returnthis.color;};alert(objCar.name+""+objCar.showColor());*///问题,以上代码只能创..
分类:
Web程序 时间:
2015-04-28 00:02:16
阅读次数:
171
rgba 是由red、green、blue 三种颜色搭配出来的box-shadow 向元素添加阴影层,水平阴影位置,垂直阴影位置,后面是可选:模糊距离,阴影大小,颜色,是否是内部阴影text-shadow 向文本添加一个或多个阴影,水平阴影位置,垂直阴影位置,模糊的距离,阴影颜色...
分类:
Web程序 时间:
2015-04-27 21:44:30
阅读次数:
125
ARGB—Alpha,Red,Green,Blue 一种色彩模式,也就是RGB色彩模式附加上Alpha(透明度)通道,常见于32位位图的存储结构。 Alpha,图像通道,全强度为FF,表示无透明度,即不透明;无强度为00 ,表示全透明。因此,透明像素颜色值为 Alpha位-00,Red位...
分类:
其他好文 时间:
2015-04-27 16:46:10
阅读次数:
224
1. WebSphere项目部署
MyEclipse支持WebSphere提供了先进的WebSphere项目管理部署和应用程序服务器控制功能。项目部署以及控制WebSphere服务器与其他任何MyEclipse应用程序服务器连接都是一样的。然而,WebSphere连接器还有一些额外的功能。
注意:WebSphere支持需要MyEclipse Blue或Bling subscriptio...
分类:
Web程序 时间:
2015-04-27 11:20:06
阅读次数:
234
以二进制流 写入加密二进制串+Image = 新文件新文件,新思维QImage image("philip.png"); QMap map; map.insert("red", Qt::red); map.insert("green", Qt::green); map.insert("blue", ...
分类:
其他好文 时间:
2015-04-26 21:01:48
阅读次数:
140
/*css*/a:link{ color: blue;}a:visited{ color: green;}a:hover{ color: red;}a:focus{color:black;}a:active{ color: yellow;}/*html*/click melink表示链接在正常情况下...
分类:
其他好文 时间:
2015-04-26 16:35:30
阅读次数:
480