一:通过JavaScript的方式设置样式(:拿习题为例): var shuiguo = document.getElementById('fruit'); shuiguo.style.backgroundColor = 'Red'; //1 shuiguo.onclick = function (...
分类:
编程语言 时间:
2014-07-15 00:32:00
阅读次数:
323
元素选择器h1 {color:red; font-size:14px;}id选择器#sidebar { border: 1px dotted #000; padding: 10px; }类选择器.center {text-align: center}属性选择器//下面的例子为带有 ...
分类:
Web程序 时间:
2014-07-14 11:00:38
阅读次数:
293
彩色照片转换为黑白照片(Color image converted to black and white picture)
分类:
其他好文 时间:
2014-07-13 21:40:47
阅读次数:
306
C#中Graphics的画图代码【转】架上图片了你就可以在画板上涂改了啊我要写多几个字上去string str = "Baidu"; //写什么字?Font font = Font("宋体",30f); //字是什么样子的?Brush brush = Brushes.Red; //用红色涂上我的字吧...
分类:
其他好文 时间:
2014-07-13 19:45:20
阅读次数:
298
/*要想看到边框的颜色,就必须设置边框的样式,否则看不到效果。
border也可以简写:border:1px solid Red 意思是设置边框border宽度为1px,样式为solid,颜色为Red*/
.d1{ border-width:1px; border-style:solid;border-color:Red; background-color:Gr...
分类:
Web程序 时间:
2014-07-13 18:59:41
阅读次数:
329
linuxredhad设置root开机密码和菜单密码1.设置开机密码的配置文件在/etc/grup.confroot#vim/etc/grup.conf1.#开机密码我们在15行之后加入一行开机的时候跳过5、4、3、2、1的时候提示输入密码。2.菜单密码就是你开机的时候提示5、4、3、2、1然后你按“e”没反应,需要按“p”输..
分类:
系统相关 时间:
2014-07-13 15:20:20
阅读次数:
265
linuxredhad设置root开机密码和菜单密码1.设置开机密码的配置文件在/etc/grup.confroot#vim/etc/grup.conf1.#开机密码我们在15行之后加入一行开机的时候跳过5、4、3、2、1的时候提示输入密码。2.菜单密码就是你开机的时候提示5、4、3、2、1然后你按“e”没反应,需要按“p”输..
分类:
系统相关 时间:
2014-07-13 14:25:54
阅读次数:
226
Red and BlackProblem DescriptionThere is a rectangular room, covered with square tiles. Each tile is colored either red or black. A man is standing on...
分类:
其他好文 时间:
2014-07-13 13:10:07
阅读次数:
220
1.修改redhat enterprise5 语言
问题描述:切换语言
cd /etc/sysconfig
vi i18n
将LANG=en_US.UTF-8
改成LANG=zh_CN.gb2312
2.bash: ifconfig: command not found
问题描述:
切换到root用户下
[root@localhost /]$ ifconfig
依然提示:“bash: ifconfig: command not found”
whereis ifconfig 看一下这个命令在...
分类:
系统相关 时间:
2014-07-12 22:56:34
阅读次数:
416
题目链接:http://poj.org/problem?id=1979
题目大意:一个矩形的房间地板被分为w*h个小块,每一个小块不是红的就是黑的,你首先站在一个黑色小块上,你只能朝你的四个方向(上下左右)移动,且不能到达红色的小块上,问你最多能到达多少个小块。
很简单的dfs深度优先搜索
没搜索过一个格子,将该格子设置为红色,之后的搜索就不会再搜索到该格子,就不会造成重复,因为该题有很多数...
分类:
其他好文 时间:
2014-07-12 18:44:03
阅读次数:
169