发布时间:2016-07-05 10:48:03
css3的nth-child(n)的兼容性问题/* standard nth */ul.menu li:nth-child(3){ /* styles for the 3rd LI */}/* IE nth */ul.menu>li + li + li { /* styles for the 3rd LI */}/* alternate, more specific IE nth */ul.menu>li:first-child + li + li { /* styles for the 3rd LI */}参考链.........【阅读全文】
发布时间:2016-06-16 13:45:45
加入这段代码用户用360打开时就会默认用极速模式展示<meta name="renderer" content="webkit"><meta http-equiv="X-UA-Compatible" content="IE=edge">......【阅读全文】
发布时间:2016-06-07 15:05:48
1.jquery常用引入js加载动态数据jQuery.getScript("script.js", function(data, status, jqxhr) { $('body').append(""); function showTab(){ }});2.绑定方法$(document).on("hover",".rankAd li'",function(){ $(this).addClass('hover').siblings().remove.........【阅读全文】
发布时间:2016-04-11 10:27:07
1.引入百度site APP的uaredirect.js<script src="http://siteapp.baidu.com/static/webappservice/uaredirect.js" type="text/javascript"></script>2.写上手机版需要跳转的链接<script type="text/javascript">uaredirect("http://m.jiuquan.cc");</script>......【阅读全文】
发布时间:2016-01-04 17:23:07
countDown.zipdemo1是倒计时n秒demo2是结束时间到现在时间的倒计时demo3是倒计时60s......【阅读全文】