全透明代码:{background:transparent} 半透明代码:{filter:alpha(opacity=80);-moz-opacity:0.8;width:auto !important;width:100%}
分类:
Web程序 时间:
2014-08-18 12:26:04
阅读次数:
256
$\bf命题:$设$f(x,y)$为线性空间$V$上的非退化双线性函数,则对任何$g \in {V^*}$,存在唯一的$\alpha \in V$,使得$g\left( \beta \right) = f\left( {\alpha ,\beta } \right),\forall \beta \i...
分类:
其他好文 时间:
2014-08-17 19:51:32
阅读次数:
233
import?java.util.concurrent.ExecutorService;
import?java.util.concurrent.Executors;
/**
?*?Created?by?alpha?on?14-8-15.
?*/
public?class?Main?{
????private?static?final?int?TIM...
分类:
编程语言 时间:
2014-08-16 01:12:49
阅读次数:
349
特殊符号
[:alnum:] 代表英文大小写字符及数字,即 0-9, A-Z, a-z
[:alpha:] 代表任何英文大小写字符,即 A-Z, a-z
[:upper:] 代表大写字符,即 A-Z
[:lower:] 代表小写字符,即 a-z
[:digit:] 代表数字而已,即 0-9
[:xdigit:] 代表 16 进制数字类型,因此包括: 0-9, A-F, a-f 的数字与字符...
分类:
其他好文 时间:
2014-08-13 19:06:57
阅读次数:
221
1 background: rgba(255, 255, 255, 0.8) !important; /* IE无效,FF有效 */2 3 background: #fff;4 5 filter: alpha(opacity=60);在需要不透明文字的...
分类:
其他好文 时间:
2014-08-13 18:37:26
阅读次数:
211
+(UIColor *)colorWithRGB:(int)color alpha:(float)alpha{ return [UIColor colorWithRed:((Byte)(color >> 16))/255.0 green:((Byte)(color >> 8))/255.0 blu....
分类:
其他好文 时间:
2014-08-13 12:42:46
阅读次数:
228
实现图片或背景透明可以使用opacity,如opacity=0.5。但是ie9以下的都不支持,这时候可以使用ie特有的滤镜来实现,只需一句话,filter:alpha(opacity=50);但是注意,如果是设置一个div的opacity属性,那它里面的元素也都有了透明属性。有的时候我们只想让背景透...
分类:
其他好文 时间:
2014-08-13 12:24:36
阅读次数:
257
.pop_overlay{ width: 100%; height: 100%; background: #c2c2c2; opacity: 0.5; filter:alpha(opacity=50); position: fixed; z-index: 1; left: 0; top:0; dis...
分类:
其他好文 时间:
2014-08-12 16:47:14
阅读次数:
189
.layer{ width: 100%; position: absolute; left: 0; right: 0; top: 0; bottom: 0; -moz-opacity: 0; filter: alpha(opacity=50);...
分类:
Web程序 时间:
2014-08-12 08:58:33
阅读次数:
194
Paint类常用方法void setARGB(int a, int r, int g, int b) 设置Paint对象颜色,参数一为alpha透明通道void setAlpha(int a) 设置alpha不透明度,范围为0~255void setAntiAlias(boolean aa) //是...
分类:
其他好文 时间:
2014-08-12 00:02:23
阅读次数:
313