LOGO OA教程 ERP教程 模切知识交流 PMS教程 CRM教程 开发文档 其他文档  
 
网站管理员

原生JavaScript实现文本内容的文字数量变化,适配容器宽度和高度,文本内容文字字体的字号大小自动缩小,保障文字全部都在容器内显示完

Ccoffee
2025年4月14日 9:13 本文热度 734
:原生JavaScript实现文本内容的文字数量变化,适配容器宽度和高度,文本内容文字字体的字号大小自动缩小,保障文字全部都在容器内显示完


 

<!DOCTYPE html>
<html lang="en">
 
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>文字自动填充容器</title>
    <style>
        body {
            display: flex;
        }
 
        textarea {
            width: 200px;
            height: 200px;
            margin-left: 20px;
        }
 
        .outer {
            width: 200px;
            height: 200px;
            box-sizing: border-box;
            border: 1px solid #F56C6C;
        }
 
        .container {
            word-wrap: break-word;
            word-break: break-all;
            white-space: break-spaces;
            box-sizing: border-box;
            border: 1px dashed #67C23A;
        }
    </style>
</head>
 
<body>
    <div class="outer">
        <div class="container">这是一段很长的文本内容,当内容超出容器宽度时,字体大小会自动缩小来适应容器。</div>
    </div>
    <textarea oninput="input(this.value)"></textarea>
 
</body>
<script>
    let findFontSize = (container, { text, fontSize = 100, containerHeight = 100 } = {}) => {
        container.innerText = text;
        let setFontSize = (size) => (container.style.fontSize = `${size}px`);
        setFontSize(fontSize);
        // 如果内容超过了容器高度就减小字号
        console.log(``, container.offsetHeight);
        while (container.offsetHeight > containerHeight) {
 
            fontSize--, setFontSize(fontSize);
        }
    }
 
    let input = (text) => findFontSize(document.querySelector(`.container`), { text, containerHeight: 200 });
 
</script>
 
</html>



该文章在 2025/4/14 9:13:32 编辑过
关键字查询
相关文章
点晴ERP是一款针对中小制造业的专业生产管理软件系统,系统成熟度和易用性得到了国内大量中小企业的青睐。
点晴PMS码头管理系统主要针对港口码头集装箱与散货日常运作、调度、堆场、车队、财务费用、相关报表等业务管理,结合码头的业务特点,围绕调度、堆场作业而开发的。集技术的先进性、管理的有效性于一体,是物流码头及其他港口类企业的高效ERP管理信息系统。
点晴WMS仓储管理系统提供了货物产品管理,销售管理,采购管理,仓储管理,仓库管理,保质期管理,货位管理,库位管理,生产管理,WMS管理系统,标签打印,条形码,二维码管理,批号管理软件。
点晴免费OA是一款软件和通用服务都免费,不限功能、不限时间、不限用户的免费OA协同办公管理系统。
Copyright 2010-2025 ClickSun All Rights Reserved