摘要:
1.margin:auto ;让元素居中,需要确定元素的宽度,并且需要是块元素 eg: div { width:200px; height:200px; background:#222; margin:0 auto; } 2. div > p 两者都是块元素 div { width:200px; h 阅读全文
摘要:
navigator.userAgent 又一次遇到这个,之前没见过,于是就查了一下,记录下来以备后面查询 var user = navigator.userAgent.toLowerCase() if (/micromessenger/.test(user)) else if (/iphone|ip 阅读全文
摘要:
// 倒计时插件 (function (){ function countdown(config){ var startDate = config.start ? new Date(config.start) : new Date(); var endDate = new Date(config.end); var id = config.id || 'countdown'; var time... 阅读全文