html 632

#HTML
为页面上的链接统一指定Target

<head> <base target="_blank" /> </head>

2015-10-20 572

#HTML
清除浮动较好的通用方法

/*IE6/7/8*/ .clear{zoom:1;} /*通配及非IE*/ .clear:after{content:"";height:0;visibility:hidden;…

2015-10-20 227

#HTML
js烟花特效

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xh…

2015-10-18 602

#HTML
CSS一行省略

<p style="width: 300px;overflow: hidden;white-space: nowrap;text-overflow: ellipsis;"&g…

2015-10-16 164

#HTML
CSS 固定页脚

#footer { position:fixed; left:0px; bottom:0px; height:30px; width:100%; background:#999; …

2015-10-16 511

#HTML
DIV来做表格?

*{margin:0 auto; padding:0px;list-style:none;} .e{width:500px; border-top:solid #f00 1px; …

2015-10-15 974

#HTML
手机端html5触屏事件(touch事件)

touchstart:触摸开始的时候触发 touchmove:手指在屏幕上滑动的时候触发 touchend:触摸结束的时候触发 而每个触摸事件都包括了三个触摸列表,每个列表里包含了…

2015-10-15 277

#HTML
让网页变灰色兼容各种浏览器

html{ filter: grayscale(100%); -webkit-filter: grayscale(100%); -moz-filter: grayscale(100…

2015-10-14 191

#HTML
Android传感器API之:加速度Accelerometer功能源码

加速度传感器,主要是感应手机的运动。捕获三个参数,分别表示空间坐标系中X、Y、Z轴方向上的加速度减去重力加速度在相应轴上的分量,其单位均为m/s2。和之前几篇传感器功能介绍中的一样…

2015-10-13 548

#HTML
CSS 圆角

/* set millions of background images */ .rbroundbox { background: url(nt.gif) repeat; } .r…

2015-10-12 256

#HTML
Git@OSC 502页面,收藏备份

<!DOCTYPE html PUBLIC "-//WAPFORUM//DTD XHTML Mobile 1.0//EN" "http://www.wapforum.org/…

2015-10-12 302
1 6 7 8 9 10 53