getDialog().getWindow().setBackgroundDrawable(new ColorDrawable(Color.TRANSPARENT));
分类:
其他好文 时间:
2015-09-25 17:47:01
阅读次数:
421
透明往往能产生不错的网页视觉效果,先奉上兼容主流浏览器的CSS透明代码:.transparent_class { filter:alpha(opacity=50); -moz-opacity:0.5; -khtml-opacity: 0.5; opacity: 0.5;}上面的几个属性分别是...
分类:
Web程序 时间:
2015-09-19 22:33:57
阅读次数:
298
通过设置可以创建圆角border的CornerRadius属性其边框呈现圆角样式代码:效果图:位置说明:CornerRadius="左,右,右下,左下"提示:如过圆角处有颜色,请将外层容器的背景色设置为透明Background="Transparent" ...
方式一:document.body.addEventListener('touchstart', function () { });方式二:-webkit-tap-highlight-color:transparent;来源:http://www.jb51.net/css/229841.html
分类:
移动开发 时间:
2015-09-16 12:41:39
阅读次数:
176
直接上效果图:queue:transparent雾: fog { mode exp color(0.6,0.4,0.3,0.8) density 0.3 range 0,0.8 ...
分类:
其他好文 时间:
2015-09-14 22:25:15
阅读次数:
170
上三角▲1 width: 0;2 height: 0;3 line-height: 0;4 font-size: 0;5 border-width: 10px;6 border-style: solid;7 border-color: transparent transparent #000 tra...
分类:
Web程序 时间:
2015-09-11 17:20:16
阅读次数:
126
第一、窗口的AllowsTransparency设置为True第二、窗口的Background设置为Transparent第三、窗口的WindowStyle设置为None第四、窗口内的Grid用Clip或者Border设置为需要的形状代码示例(利用Clip实现圆角窗口) 1 10 11 ...
/*箭头向上*/.arrow-up { width:0; height:0; border-left:30px solid transparent; border-right:30px solid transparent; bord...
分类:
Web程序 时间:
2015-09-02 22:07:26
阅读次数:
555
透明往往能产生不错的网页视觉效果,先奉上兼容主流浏览器的CSS透明代码:代码如下:.transparent_class {filter:alpha(opacity=50);-moz-opacity:0.5;-khtml-opacity: 0.5;opacity: 0.5;}上面的几个属性分别是:op...
分类:
Web程序 时间:
2015-09-01 10:34:38
阅读次数:
180
有时我在看css时,看到有的css属性定义为background:transparent。意思就是背景透明。实际上background默认的颜色就是透明的属性。所以写和不写都是一样的有段时间没写文章了,一直在学校,虽然带着电脑,但是不能上网啊!最近在用javascript写一个网页版的操作系统,写好...
分类:
Web程序 时间:
2015-08-31 23:37:51
阅读次数:
197