码迷,mamicode.com
首页 >  
搜索关键字:grey    ( 103个结果
css垂直居中的四种方法
<!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <title>垂直居中</title> <style> .parent{width: 400px;height: 400px;border:1px solid grey;disp ...
分类:Web程序   时间:2017-09-28 18:36:33    阅读次数:195
面向对象的程序设计
1.Value的值为只读的(defineProperty.规定属性,): <script>var person={};Object.defineProperty(person,"name",{ writable: flase, //如果这里改为true,则第二个弹出框则为Grey value:"Ni ...
分类:其他好文   时间:2017-09-05 12:29:03    阅读次数:141
32位centos6.5 mysql rpm包下载
查看centos版本号和位数: http://www.cnblogs.com/grey-wolf/p/7472507.html mysql下载: 1.进入https://dev.mysql.com/downloads/,点击 2.操作系统选择,centos选择 、 3.选择位数,因为是centos6 ...
分类:数据库   时间:2017-09-04 11:51:16    阅读次数:204
vim中256色的配色表
vim貌似支持的颜色很有限.white black yellow cyan magenta blue grey green red,大多数颜色前面都可以加light 或者 dark 来进行修饰但是VIM开启256色的配置后,支持的配色.其实VIM支持的颜色不仅这些: 1、到https://githu ...
分类:系统相关   时间:2017-08-20 15:54:29    阅读次数:244
css div子元素剧中
<styletype="text/css"media="screen"> div{display:inline-block;background-color:grey;} ul{list-style:none;display:table;margin:0auto;background-color:yellow;padding:0px;} li{display:table-cell;background-color:blue;}</style> <divstyle="width:8..
分类:Web程序   时间:2017-07-15 12:41:49    阅读次数:203
Tarjan求桥和割点
//Tarjan 求桥和割点 Tarjan(u,fa) { DFN[u]=LoW[u]=++time; Cu=grey; for each e=(u,v) { Tarjan(v,u); if(Cv=white) { low[u]=min(low[u],low[v])... ...
分类:其他好文   时间:2017-07-06 10:13:54    阅读次数:145
导出table为Excel
1、HTML 2、Blob.js /* Blob.js * A Blob implementation. * 2014-07-24 * * By Eli Grey, http://eligrey.com * By Devin Samarin, https://github.com/dsamarin ...
分类:其他好文   时间:2017-06-30 11:04:37    阅读次数:386
复选框和下拉框js如何操作合格复选框或下拉框中元素
<div style="width: 510px; border: 1px grey solid; border-right: 1px gray; padding-top: 1px;" id="heddendiv"> <div> <ul id="addressul" class="ul_s"> </ ...
分类:Web程序   时间:2017-05-30 15:47:47    阅读次数:120
常用的四种CSS样式表格
1. 单像素边框CSS表格 这是一个很常用的表格样式。 2. 带背景图的CSS样式表格 和上面差不多,不过每个格子里多了背景图。 cell-blue.jpg cell-grey.jpg 1. 下载上面两张图,命名为cell-blue.jpg和cell-grey.jpg 2. 拷贝下面的代码到你想要的 ...
分类:Web程序   时间:2016-12-18 12:01:19    阅读次数:263
imshow() displays a white image for a grey image
Matlab expects images of type double to be in the 0..1 range and images that are uint8 in the 0..255 range. You can convert the range yourself (but ch ...
分类:其他好文   时间:2016-12-15 20:25:16    阅读次数:214
103条   上一页 1 2 3 4 5 6 ... 11 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!