摘要:
第一种: 使用绝对定位,确定div的宽高,margin分别为div宽高的一半负值(父级相对定位) 代码: div { width: 400px; height: 400px; background: blue; position: absolute; left: 50%; top: 50%; mar 阅读全文
摘要:
如果在项目中我们拿到时间戳,但是我们一般希望得到自己想要的时间格式,如下: function formatDate(timestamp, separator) { if (!separator) { separator = '-' } const date = new Date(timestamp) 阅读全文