重置文件
IT~少年人
渴望光荣
展开
-
reset.css
body { font: 12px/1.5 “Microsoft Yahei”,tahoma,arial,“Hiragino Sans GB”; color: #333; } html,body,ol,ul,li,dl,dt,dd,h1,h2,h3,h4,h5,h6,fieldset,legend,form,img,input{ margin: 0; padding: 0; } a{ text-d...原创 2019-04-23 18:17:18 · 1920 阅读 · 0 评论 -
common.js
function addCookie(e, t, a) { var n = e + “=” + escape(t) + “; path=/”; if(a > 0) { var r = new Date; r.setTime(r.getTime() + a * 3600 * 1e3); n = n + “;expires=” + r.toGMTString() } document.cooki...原创 2019-04-23 18:20:53 · 1900 阅读 · 0 评论 -
css一行、两行显示省略号
//一行 white-space: nowrap; text-overflow: ellipsis; overflow: hidden; word-break: break-all; //两行 text-overflow: -o-ellipsis-lastline; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -...原创 2019-04-25 09:06:08 · 2366 阅读 · 0 评论 -
常用公共css
/* 重置文件 */ body { font: 12px/1.5 "Microsoft Yahei", tahoma, arial, "Hiragino Sans GB"; color: #999; } html, body, ol, ul, li, dl, dt, dd, h1, h2, h3, h4, h5, h6, fieldset, legend, form, img, inpu...原创 2019-08-17 11:05:26 · 2007 阅读 · 0 评论 -
常用公共js文件
/* 获取浏览器信息 */ function getBrowserInfo() { var ua = navigator.userAgent.toLowerCase(), info = { // ie ie: /msie/.test(ua) || !/opera/.test(ua), // Opera 浏览器 op: /opera/.te...原创 2019-08-17 13:16:13 · 2564 阅读 · 0 评论