当前位置: 首页 > article >正文

CSS利用浮动实现文字环绕右下角,展开/收起效果

期望实现

文字最多展示 N 行,超出部分截断,并在右下角显示 “…” + “更多”;
点击更多,文字展开全部内容,右下角显示“收起”。效果如下:
在这里插入图片描述

思路

尽量使用CSS控制样式,减少JS代码复杂度。
利用CSS中的浮动,实现文字环绕效果;利用伪元素浮动,将浮动文字撑到右下角,所以需要已知文字的行高(并且是固定行高),由此可以推算文字收起时,文字部分最大高度,以及伪元素的高度。
在这里插入图片描述

代码

下面例子设置最多展示3行,行高是20px。

codepan: css浮动实现展开收起效果

html

<body>
  <div class="text-box" id="TextBox">
    <span class="read-more" id="BtnReadMore"></span>
    <p>中央财办表示,明年将实施提振消费专项行动,重点是把促消费和惠民生紧密结合起来。一方面,要在增强消费能力、提升消费意愿上下功夫,通过加大财政对终端消费直接投入、提升社会保障水平等方式,推动居民收入稳定增长。</p>
  </div>
</body>

css:

* {
  padding: 0;
  margin: 0;
}

body {
  width: 500px;
  padding: 10px 20px;
  box-sizing: border-box;
  margin: 20px auto;
  border: 1px solid #999;
}
.text-box {
  position: relative;
  max-height: 60px; /* 行高是M,最多展示N行,则最大高度是(M*N)px */
  overflow: hidden;
  font-size: 0;
}
.text-box p {
  font-size: 14px;
  line-height: 20px;
}
.text-box::before {
  content: "";
  display: inline;
  float: right;
  width: 0;
  height: 40px; /* 伪元素高度是 M*(N-1)px */
}
.text-box .read-more {
  float: right;
  clear: right;
}
.text-box .read-more::before {
  content: "...";
  font-size: 14px;
  line-height: 20px;
  margin-right: 6px;
}
.text-box .read-more::after {
  content: "展开";
  color: #0a6edb;
  font-size: 14px;
  line-height: 20px;
}

.text-box.unfold {
  max-height: inherit;
  padding-bottom: 20px; /* 文字底部留一行高度, 展示“收起” */
}
.text-box.unfold::before {
  display: none;
}
.text-box.unfold .read-more {
  float: none;
  position: absolute;
  bottom: 0;
  right: 0;
}
.text-box.unfold .read-more::before {
  display: none;
}
.text-box.unfold .read-more::after {
  content: "收起";
}

js:

document.getElementById("BtnReadMore").onclick = function() {
   document.getElementById("TextBox").classList.toggle("unfold")
}

http://www.kler.cn/a/459441.html

相关文章:

  • 数据挖掘——神经网络分类
  • matlab时频分析库
  • 直播预告丨社区年度交流会 《RTE 和 AI 融合生态洞察报告 2024》发布
  • 逻辑推理算法
  • node.js之---事件循环机制
  • 电脑找不到mfc110.dll文件要如何解决?Windows缺失mfc110.dll文件快速解决方法
  • 从论文到实践:Stable Diffusion模型一键生成高质量AI绘画
  • 【笔记️】魔爪 Mini mx 使用快捷键
  • 深入解析C#异步编程:await 关键字背后的实现原理
  • Vue.js 生命周期概述:组件从诞生到销毁的全过程
  • Python世界:函数模块知识点小结
  • pytorch torch.utils.checkpoint模块介绍
  • Golang协程为什么⽐线程轻量
  • o1到o3的发展历程
  • lombok-macros
  • 【Go】context标准库
  • 步进电机驱动算法——S形加减速算法原理
  • 面试经典150题——数组/字符串(二)
  • 开发运维基本功:无需复杂配置快速实现本地Nginx的公网远程访问
  • 【文献精读笔记】Explainability for Large Language Models: A Survey (大语言模型的可解释性综述)(三)
  • 打破传统,手势验证码识别
  • DP协议:PHY层
  • JS - Array Api
  • 从零开始学架构——互联网架构的演进
  • C++ hashtable
  • No.3十六届蓝桥杯备战|数据类型长度|sizeof|typedef|练习(C++)