实现原理:设置分割线透明,再设置分割线高度。 Android:dividerHeight 设置分割线高度 Android:divider 设置分割线颜色(@android:color/transparent 也可以直接写作 #00000000,注意是8个0) ...
分类:
其他好文 时间:
2017-07-19 17:42:16
阅读次数:
270
转载 http://www.cnblogs.com/yangAL/p/6934608.html color: red; text-shadow: 0px 0px 0px #000; -webkit-text-fill-color: transparent;把这些放到input里文字通过阴影实现 这是 ...
分类:
其他好文 时间:
2017-07-13 14:20:09
阅读次数:
113
redis启动警告: WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. ...
分类:
其他好文 时间:
2017-07-13 10:41:06
阅读次数:
182
1 input { 2 outline:none; 3 background:transparent; 4 border:none; 5 outline:medium; 6 } 7 *:focus { 8 outline: none; 9 backgroun... ...
分类:
Web程序 时间:
2017-07-12 19:55:32
阅读次数:
176
1.新浪定位 2.弹出遮罩后禁止页面页面滑动 3.透明色 transparent 4.当前网页从哪里链接来的 document.referrer ...
分类:
其他好文 时间:
2017-07-12 18:49:46
阅读次数:
152
function copyTextToClipboard(text) { var textArea = document.createElement("textarea"); textArea.style.background = 'transparent'; textArea.value = te ...
分类:
Web程序 时间:
2017-07-10 14:24:49
阅读次数:
250
.btn:focus, .btn:active:focus, .btn.active:focus, .btn.focus, .btn:active.focus, .btn.active.focus { outline: none; border-color: transparent; } .btn: ...
分类:
其他好文 时间:
2017-07-07 11:43:50
阅读次数:
152
1.小三角,通过给一个div设置足够大的边框,让它的上边框,右边框,左边框,的背景颜色设置成透明的,来实现,如下: 2.a标签的移动端问题: 1》当再点击a标签的时候,它会有默认的背景颜色,解决办法 1 -webkit-tap-highlight-color:transparent; 2》当点击时可 ...
分类:
移动开发 时间:
2017-07-06 10:21:05
阅读次数:
165
<!DOCTYPE html><html> <head> <style> .triangle { width : 0; height: 0; border : 100px solid transparent; border-top : 100px solid blue; /*这里可以设置border ...
分类:
其他好文 时间:
2017-07-05 11:34:57
阅读次数:
105
移动端的页面多数情况下用百分比或者媒体查询来设置页面的宽高度 这样会达到响应的效果 这里解释几点 1.-webkit-tap-highlight-color: rgba(0,0,0,0);也可以写成-webkit-tap-highlight-color: transparent; 去掉点击时高光显示 ...
分类:
移动开发 时间:
2017-06-30 19:45:41
阅读次数:
202