(1)页面加载js,无需运行完整页面代码: <body onload="JScript:函数名(IE);JavaScript:函数名(火狐和一部分);javascript:函数名(谷歌和其他);">(2)边框阴影: -moz-box-shadow:0px 0px 4px rgba(0,0,0,0.5 ...
分类:
其他好文 时间:
2016-04-23 13:17:59
阅读次数:
188
.waps{background:url(07158.bmp)no-repeattopcenterfixed;width:1004px;text-align:center;line-height:28px;font-size:12px;font-family:Arial,Helvetica,sans-serif;}.con{text-align:left;width:500px;height:400px;margin:0pxauto;padding:100px50px;background:rgba(255,..
分类:
Web程序 时间:
2016-04-20 11:45:09
阅读次数:
133
去除手机中按钮点击默认有灰色背景: *{ tap-highlight-color:rbga(0, 0, 0, 0); -webkit-tap-highlight-color:rgba(0,0,0,0);} // 禁止右键和手指长按事件 document.oncontextmenu = new Fun ...
分类:
Web程序 时间:
2016-04-19 11:59:05
阅读次数:
200
相片加水印大致流程:1.从Camera获取到yuv(NV21)数据,转换成RGBA数据2.从上层得到水印文件及水印位置,decode水印文件为RGBA数据3.两者进行叠加,然后再重新编码成JPEG文件
分类:
其他好文 时间:
2016-04-16 19:40:04
阅读次数:
149
glctx.ClearColor 的参数信息如下: // ClearColor specifies the RGBA values used to clear color buffers. // // http://www.khronos.org/opengles/sdk/docs/man3/htm... ...
分类:
其他好文 时间:
2016-04-10 18:07:23
阅读次数:
173
.mask{ position:absolute;left:0;top:0;height:100vh;width:100vw;filter:Alpha(opacity=60);background-color: rgba(0,0,0,0.6);font-size:3vh; display: -ms- ...
分类:
其他好文 时间:
2016-04-08 10:14:06
阅读次数:
136
background:rgba(0,0,0,0.5);filter: progid:DXImageTransform.Microsoft.gradient(startcolorstr=#7F000000,endcolorstr=#7F000000); ...
分类:
其他好文 时间:
2016-04-01 23:21:20
阅读次数:
249
一、按钮点击时出现黑色背景 解决方法: 1.class { -webkit-tap-highlight-color:rgba(0,0,0,0);} 2.class { -webkit-appearance: none; -webkit-tap-highlight-color: transparent ...
分类:
移动开发 时间:
2016-03-30 14:55:32
阅读次数:
149
RGB:一个像素由红色(RED)、绿色(GREEN)、蓝色(BLUE)三元色顺序存放。每种元色占用一字节(Btye)。一个像素总共占用3字节(Byte),24比特(Bit)。 其他表示方法:RGB24、RGB888 依据RGB存放位置组合。还有BGR(蓝色、绿色、红色)序顺存放 RGBA:是在RGB ...
分类:
其他好文 时间:
2016-03-26 18:37:16
阅读次数:
215
1、fixed支持ie7以上,fixed、absolute支持width:100%;height:100%;2、rgba支持ie9以上浏览3、未声明变量就直接给赋值的,在ie8以下会报错 city = document.getElementById("input").value;//$("input[name='city']").val();
alert(city);...
分类:
其他好文 时间:
2016-03-26 07:54:17
阅读次数:
182