jQuery 和CSS - 按高度剪切文本,不截断

发布于 2024-12-26 01:07:19 字数 341 浏览 0 评论 0原文

因为我想切换文本,所以需要隐藏其中的一部分。

问题

  • 我的文本高度将为 X 或更少像素。
  • div 的高度取决于侧边栏的高度,并且不像此演示那样静态。
  • 如果最后一行的字母现在被截断(参见演示),我也想隐藏该行。

看看我的演示: http://jsfiddle.net/qWDLb/1/

我自己的想法是是否可以使用行高或字体大小来计算高度?

Because I want to toggle my text I need to hide a part of it.

Problem

  • My text height is going to be X or less pixels in height.
  • The height of the div depends on a sidebar height and is not as static as this demo.
  • If the letters on the last row are now truncated (se demo), I want to hide that row as well.

Look at my demo: http://jsfiddle.net/qWDLb/1/

My own thougt would be if the height could be calculated by using line-height or font sizes?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

夏末染殇 2025-01-02 01:07:19

您可以通过以下方式确定行高:

$('.text').css('line-height')

这将为您提供最后带有“px”的高度。这是一个显示 4 行的工作 jsfiddle : http://jsfiddle.net/scaillerie/qWDLb/3/

You can determine line-height with:

$('.text').css('line-height')

This give you this height with 'px' at the end. Here is a working jsfiddle for showing 4 lines : http://jsfiddle.net/scaillerie/qWDLb/3/ .

昇り龍 2025-01-02 01:07:19

你会想要与新兴市场打交道。计算出div的高度,如有必要,可以缩小DIV的高度以隐藏部分线条。

http:// /webdev-il.blogspot.com/2011/03/how-to-convert-pixel-to-em-why-use-ems_31.html

You will want to deal with EMs. Figure out the div's height, and if necessary, you can shrink the height of the DIV to hide the partial line.

http://webdev-il.blogspot.com/2011/03/how-to-convert-pixel-to-em-why-use-ems_31.html

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文