- 博客(8)
- 收藏
- 关注
原创 日常记录#4 二次封装element的toolTip,在文字超出宽度时展示toolTip,支持rowNum:超出rowNum行后显示省略号
二次封装tooltip
2022-09-22 09:59:26
284
原创 日常记录#2 设置页面的REM
let deviceWidth = document.documentElement.clientWidth if (deviceWidth > 750) deviceWidth = 750 document.documentElement.style.fontSize = deviceWidth / 7.5 + 'px'
2021-09-26 19:45:10
76
原创 日常记录#1 毫秒格式化
日常记录#1 毫秒格式化 const timeRE = /([hms])\1?/g const oneHour = 1000 * 60 * 60 const oneMinute = 1000 * 60 const oneSeconds = 1000 export const FormatTime = (t: number, mask = 'hh:mm:ss'): string => { let h = Math.floor(t / oneHour) let m = Math.floor((t %
2021-09-26 19:37:43
91
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人
RSS订阅
1