上一页 1 2 3 4 5 6 7 ··· 13 下一页
摘要: web app开发需要在很多的设备上测试chrome有个功能可以模拟一下具体的还待进一步验证模拟是否有效在开发工具调出 setting设置 overrides 通过设置user agent 和 devices metrices 设置不同的设备和分辨率以及可以模拟touch事件。在ff下面 firebug工具: 阅读全文
posted @ 2013-04-03 17:40 kpbiao 阅读(1131) 评论(0) 推荐(0) 编辑
摘要: 关键词:【软件】REALTEK 11n USB Wireless LAN Utility【硬件】fast fw150um 阅读全文
posted @ 2013-03-15 16:36 kpbiao 阅读(221) 评论(0) 推荐(0) 编辑
摘要: //普通的 relpace方法写法var str = "relace thisthisthisthis";str.replace('this','that');只会替换一个。结果显示的 relace thatthisthisthis;如果需要替换全部的字符串的话 需要用到正则表达var str = "relace thisthisthisthis";str.replace(/this/g,'that'); 阅读全文
posted @ 2013-03-04 21:37 kpbiao 阅读(154) 评论(0) 推荐(0) 编辑
摘要: <style type="text/css"> .warp{ width: 200px; height: 150px; overflow: hidden; display: table; border: 1px solid #000; *position: relative; } .sub_warp{ display: table-cell; vertical-align: mi... 阅读全文
posted @ 2013-02-28 15:05 kpbiao 阅读(150) 评论(0) 推荐(0) 编辑
摘要: 1. 行高不要小于字体不然会出现部分字体隐藏的bug。2.http://zeptojs.com/#download 移动端框架3.http://www.bootcss.com/ bootstrap前端框架4.http://browserdiet.com/#js 网站减肥 阅读全文
posted @ 2013-01-23 11:07 kpbiao 阅读(154) 评论(0) 推荐(0) 编辑
摘要: js学习 阅读全文
posted @ 2012-11-07 15:12 kpbiao 阅读(826) 评论(1) 推荐(0) 编辑
摘要: <style><!-- .box { width: 100px; height: 100px; position: relative; /*text-indent: -999em; line-height: 999em; vertical-align: middle; font-size: 0; line-height: 0; -webkit-text-size... 阅读全文
posted @ 2012-10-25 19:10 kpbiao 阅读(247) 评论(0) 推荐(0) 编辑
摘要: <script type="text/javascript"> var url = '?qq=0&ADUIN=564676845&ADSESSION=1344819405&ADTAG=CLIENT.QQ.4735_.0' || location.search; var getInfo = []; if(url.length>1){ var ls =url.substring(1); var namevlue = ls.split('&'); for(var i = 0 ;... 阅读全文
posted @ 2012-08-13 10:38 kpbiao 阅读(128) 评论(0) 推荐(0) 编辑
摘要: 203.208.46.160 code.google.comhttp://code.google.com/p/smarthosts/ 阅读全文
posted @ 2012-07-04 17:26 kpbiao 阅读(45) 评论(0) 推荐(0) 编辑
摘要: 需要用的a span{display:none}a:hover span{ display:block}这个样式的时候往往在ie6下面显示出来了 span层就不隐藏了处理办法是a:hover本身状态没有改变一下 所以在ie6下面出现了这个bug。a:hover需要本身也要有变化才会带动 后面的元素变化。这里需要给 加上一句样式:a:hover{ zoom:1}或者改变其他的属性。如background或者border padding margin 这个时候该bug就可以解决。 阅读全文
posted @ 2012-07-03 17:38 kpbiao 阅读(177) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 13 下一页