DescriptionThe Genographic Project is a research partnership between IBM and The National Geographic Society that is analyzing DNA from hundreds of th...
分类:
其他好文 时间:
2015-10-31 20:12:45
阅读次数:
258
第一种是使用Array()构造函数,如下所示:var array=new Array();第二种是使用数组字面量表示法。由一组包含数组项的方括号表示,多个数组之间以逗号隔开。如下所示:var array =["red","blue","black"];在数组中length属性不只是可读的,通过设置....
分类:
Web程序 时间:
2015-10-29 00:44:21
阅读次数:
209
background:linear-gradient(to top left, blue,orange);//从右下角往左上角渐变background:radial-gradient(to top left, blue,orange);//径向渐变
分类:
Web程序 时间:
2015-10-28 01:25:16
阅读次数:
248
2754: [SCOI2012]喵喵叫的星球Time Limit:20 SecMemory Limit:128 MBSubmit:805Solved:380[id=2754" style="color:blue; text-decoration:none">Submit][Status][Discu...
分类:
其他好文 时间:
2015-10-27 21:37:43
阅读次数:
234
1、数组常用方法var colors = ["red", "blue", "green"]; //creates an array with three strings alert(colors.toString()); //red,blue,green al...
分类:
编程语言 时间:
2015-10-27 14:55:35
阅读次数:
322
实现最小宽度的几种方法及CSS Expression[转]实现最小宽度的几种方法:css表达式尽量不用支持FF IE7IE6.test{background:blue;min-width:300px;width:auto !important;width:300px;float:left;width...
分类:
Web程序 时间:
2015-10-27 14:48:32
阅读次数:
1129
转自:http://blog.csdn.net/aniven/article/details/2205851RGB和HSL(也叫HSB/HSV)是两种色彩空间,即:红,绿,蓝(Red,Green,Blue)和色调,饱和度,亮度(Hue,Saturation,Lightness或Brightness或...
分类:
其他好文 时间:
2015-10-27 11:19:16
阅读次数:
263
# -*- coding: utf-8 -*-#python 27#xiaodeng#enumeratecolours=['red','green','blue']for i,colour in enumerate(colours): print i,colour'''0 red1 green...
分类:
编程语言 时间:
2015-10-25 19:26:50
阅读次数:
171
我们先对对input标记设定样式,代码如下:html 代码 CSS 代码#text1{border:1px solid red;height:20px;}#button{background:#FFFFFF;color:blue;border:1px solid #000;height:24px;}...
分类:
Web程序 时间:
2015-10-25 19:24:13
阅读次数:
241
opacrity表示不透明度,例如opacrity:1表示不透,opacrity:0.5表示半透明。还有RGBA是代表Red(红色) Green(绿色) Blue(蓝色)和Alpha的的色彩空间,使用时rgba(x,x,x,x);分别表示红色,绿色和蓝色混编,最后一个是透明度,假设rgba(x,x,...
分类:
Web程序 时间:
2015-10-24 12:47:26
阅读次数:
704