05 2023 档案
XSwitch 代理网页请求
摘要:相关介绍: https://www.yuque.com/jiushen/blog/xswitch-readme 插件下载地址: https://chrome.google.com/webstore/detail/idkjhjggpffolpidfkikidcokdkdaogg 阅读全文
posted @ 2023-05-29 17:35 袜子破了 阅读(86) 评论(0) 推荐(0)
css 文字超过两行的显示省略号
摘要:.box-css { overflow: hidden; word-break: break-all; text-overflow: ellipsis; display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 2 阅读全文
posted @ 2023-05-19 10:38 袜子破了 阅读(239) 评论(0) 推荐(0)
moment 月日年季度周
摘要:var moment = require('moment'); function toNum2Str(num) { if (num < 10) { return '0' + num; } return '' + num; } const toMonthDayWeekSeason = (d) => { 阅读全文
posted @ 2023-05-15 19:25 袜子破了 阅读(73) 评论(0) 推荐(0)
react useReactStore.js
摘要:import { useCallback, useEffect, useMemo, useRef, useState } from 'react'; import _get from 'lodash.get'; import _set from 'lodash.set'; export const 阅读全文
posted @ 2023-05-12 13:03 袜子破了 阅读(42) 评论(0) 推荐(0)