webrx-title
/*returnTop*/
p#back-to-top{
position:fixed;
display:none;
bottom:100px;
right:80px;
}
p#back-to-top a{
text-align:center;
text-decoration:none;...
分类:
Web程序 时间:
2014-10-06 11:26:30
阅读次数:
206
部长练习jquery的属性
.bor{border:10px solid yellow;}
.red{color:red;}
$(document).ready(function(e) {
//增加属性居中
//$('div').attr('align','center');
//设定多个属性
$('div').attr({'alig...
分类:
Web程序 时间:
2014-10-05 18:25:08
阅读次数:
233
关于IoT在刚刚过去的ARMTECHCON2014(Santa Clara Convention Center)第1天会议,首要的keynote就是ARM针对建立物联网(InternetOf Things,IoT)推出的mbed OS。其实这个mbed OS要跑起来,依赖于三方的联合互动,设备、设备服务器以及mbed应用(手机应用或者浏览器应用)。这3者的关系是:ARM实际上试图定义M系列上运行的...
分类:
其他好文 时间:
2014-10-03 16:54:54
阅读次数:
196
Given a binary tree, check whether it is a mirror of itself (ie, symmetric around its center).For example, this binary tree is symmetric: 1 / \ ...
分类:
其他好文 时间:
2014-10-02 09:45:52
阅读次数:
184
Symmetric TreeGiven a binary tree, check whether it is a mirror of itself (ie, symmetric around its center).For example, this binary tree is symmetric...
分类:
其他好文 时间:
2014-10-02 05:53:22
阅读次数:
170
ScaleType的值分别代表的意义: ImageView是Android中的基础图片显示控件,该控件有个重要的属性是ScaleType,该属性用以表示显示图片的方式,共有8种取值
ScaleType.CENTER::图片大小为原始大小,如果图片大小大于ImageView控件,则截取图片中间部分,若小于,则直接将图片居中显示。
ScaleType.CENTER_CROP...
分类:
移动开发 时间:
2014-10-01 01:37:20
阅读次数:
250
上次面试面试官问到了,问了个定宽局中和不定宽局中,下来我把所有有关CSS居中都总结了一下原文摘自我的前端博客,欢迎大家来访问http://www.hacke2.cn水平居中行内元素把行内元素嵌套在一个DIV中,并且在DIV中设置以下样式a{ text-align: center; }块级元素对于定....
分类:
Web程序 时间:
2014-09-30 23:46:00
阅读次数:
268
1,文件乱码的原因:
这还要提起,之前工作中一位领导的开导。本质原因就是你要读取的内容的编码与你读取使用的编码不一致导致读取的乱码。
保证不乱码,需要在读取的时候设置与内容一致的编码格式。
2,获取取文件名乱码解读:
File.getName() 获取文件名的时候,是根据JDK的默认文件编码进行获取的。要查看JDK中文件的默认编码可以通过Sytem.getProperties()....
分类:
编程语言 时间:
2014-09-29 22:01:01
阅读次数:
296
本文首发于烂泥行天下。公司的业务有几台服务器存放在IDC机房中,说是双线路。但是我看到网卡的配置是单网卡双IP的形式。如下:而公司这边的线路是联通的IP,如下:nagios监控搭建在公司内部,由于南北线路联通的问题。导致公司这边nagios监控IDC机房中的服务器经常误报。特别..
分类:
移动开发 时间:
2014-09-29 20:35:02
阅读次数:
284
Given a binary tree, check whether it is a mirror of itself (ie, symmetric around its center).
For example, this binary tree is symmetric:
1
/ 2 2
/ \ / 3 4 4 3
But the f...
分类:
其他好文 时间:
2014-09-28 20:10:56
阅读次数:
178