js倒计时兼容IE6
兼容性:E 6, IE 7, IE 8, FF 3, Safari 4, Opera 9, Chrome 4 倒计时只需要设置结束时间即可。 可以同时多设置几个 例如:要在2017年1月10号11时00分00秒过期,页面直接就会显示剩余时间倒计时 targetDate: { 'day': 10, 'month': 1, 'year': 2017, '…
521 2016-08-11 去围观基于jquery手机手势封装
手机 百度 touch 禁用长按文本被选中 *{ -webkit-touch-callout:none; -moz-user-select: none; /*火狐*/ -webkit-user-select: none; /*webkit浏览器*/ -ms-user-select: none; /*IE10*/ -khtml-user-select: none; /*早期浏览器*/ user-select: none;…
499 2016-08-06 去围观first-child与last-child获取不到元素原因
html代码如下 <a href="#" class="button"><</a><a href="#" class="button">></a><div id="f">F</div><div id="s">S</div><div id="t">T</div> css代码如下 .button:last-child { b…
860 2016-08-04 去围观jquery mobile笔记
jquery mobile 1.4.5 定义页面 <div id="page1" data-role="page" data-title="页面title"> <div data-role="header">头部</div> <div data-role="content"> 内容 </div> <div data-role="footer">底部</…
483 2016-08-02 去围观IE8 CSS hack只有IE8浏览器能识别
第一种:”\9″: 基本的写法: 1..test { color/*\**/: blue\9 } 这个IE6、IE7、IE8都能识别;但是IE8不能识别“*”和“_”的css hack;所以我们可以这样写hack:(转载 1..header {width:300px;} /* 所有浏览器*/ 2..header {width/*\**/:330px\9;} /* …
596 2016-07-31 去围观