摘要:
1、左侧不垂直居中 2、左侧垂直居中(可以不是一整块) 3、左侧垂直居中有背景(一定是一整块) 4、左右内容高度不同,中间有边框线 仿网格和左浮动布局会出现以下问题: 1)设置右border-left,左>右 2)设置左border-right,右>左 3)左右都设置border,影响视觉 html 阅读全文
摘要:
*ngFor="let item of userList,let i = index" 或者 *ngFor="let item of userList index as i" *ngFor="let item of userList index as i" 阅读全文
摘要:
vvv 阅读全文
摘要:
function test(options){ $.extend({ },this.Default,options); var v = this.Default || options; alert(v.name);//传入打印'嘻嘻嘻嘻',不传入打印'呵呵呵' } test.prototype.De 阅读全文
摘要:
1、不限宽,可限制1~多行 overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 1; 2、限制宽度,只能设置1行 widt 阅读全文
摘要:
<script src="../../dist/js/require.js" data-main="../../dist/js/main.js"></script> main.js: requirejs.config({ paths: { jquery: 'plugins/jQuery/jquery 阅读全文
摘要:
先按ctrl+A,再选择要居中的图层,然后就会发现居中按钮被激活了 阅读全文
摘要:
为何加个问号 阅读全文
摘要:
export enum UserType { BOSS = 1, Manager = 2, Coach = 3, Member = 6, } export enum UserType { BOSS = 1, Manager = 2, Coach = 3, Member = 6, } 阅读全文
摘要:
1、数据格式: 1)1576379936179 毫秒数 2)Sun Dec 15 2019 11:18:56 GMT+0800 (中国标准时间) 3)2019/12/15 11:21 4)2019-12-15 11:21 2、获取当前时间: 1)Date.now() //返回格式:157637993 阅读全文