hustcc / hustcc/alimask

文本特别长的话会截断

Open
#6 1 comment 0 reactions 0 assignees View on GitHub
Dominant language
JavaScript
Stars
174
Forks
42
PR merge metrics
No merged PRs in 30d

Description

建议做下长度对比,比如是个外国人,如 `弗拉基米尔·弗拉基米罗维奇·普京(普京) 001234`,超过了 width 就截断了。
```
const div = document.createElement('div');
div.style.color = '#fff';
div.style.fontSize = '14px';
div.innerHTML = `${text}`;
document.body.appendChild(div);

const width = div.getElementsByTagName('span')[0].offsetWidth;

div.parentNode.removeChild(div)
```

Contributor guide

No contributing guide indexed for this repository

Assessment

This issue has not been assessed yet.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.