摘要:
// 设置属性方法 var setAttr = function (node, key, value) { switch (key) { case 'style': node.style.cssText = value break case 'value': var tagName = node.t 阅读全文
摘要:
/** * 使用canvas * @param {String} text 文本 * @param {String} font 字体 如 'normal 12px Arial' */ function getTextWidth(text, font) { const canvas = getText 阅读全文
摘要:
1. 单行文本超出省略 .ellipsis { text-overflow: ellipsis; /*让截断的文字显示为点点。还有一个值是clip意截断不显示点点*/ white-space: nowrap; /*让文字不换行*/ overflow: hidden; /*超出要隐藏*/ } 2. 2 阅读全文