8

我希望能够使用javascript在div中找到一段文本的基线高度。

我不能使用预定义的字体,因为我的许多用户将在他们的浏览器中使用更大的字体设置。

我怎样才能在javascript中做到这一点?

4

3 回答 3

13

我为此制作了一个小型 jQuery 插件。原理很简单:

在一个容器中,插入 2 个具有相同内容的内联元素,但一个样式非常小.,另一个样式非常大A。然后,由于vertical-align:baseline默认情况下有,因此基线如下:

       ^ +----+ ^
       | | +-+| | top
height | |.|A|| v
       | | +-+| 
       v +----+

=======================
baseline = top / height
=======================

这是coffeescript中的插件(这里是JS):

$ = @jQuery ? require 'jQuery'

detectBaseline = (el = 'body') ->
  $container = $('<div style="visibility:hidden;"/>')
  $smallA    = $('<span style="font-size:0;">A</span>')
  $bigA      = $('<span style="font-size:999px;">A</span>')

  $container
    .append($smallA).append($bigA)
    .appendTo(el);
  setTimeout (-> $container.remove()), 10

  $smallA.position().top / $bigA.height()

$.fn.baseline = ->
  detectBaseline(@get(0))

然后,用以下方法吸烟:

$('body').baseline()
// or whatever selector:
$('#foo').baseline()

--

试试看:http ://bl.ocks.org/3157389

于 2012-07-23T15:17:28.007 回答
5

在 Alan Stearns ( http://blogs.adobe.com/webplatform/2014/08/13/one-weird-trick-to-baseline-align-text/ ) 发现 inline-block 元素改变了其他内联元素,我整理了一个演示,我发现它比https://stackoverflow.com/a/11615439/67190更准确,实际上更简单地在 JavaScript 中导出一个值:http: //codepen.io/georgecrawford/笔/gbaJWJ。希望它有用。

<div>
  <span class="letter">T</span>
  <span class="strut"></span>
<div>
div {
  width: 100px;
  height: 100px;
  border: thin black solid;
}
.letter {
  font-size: 100px;
  line-height: 0px;
  background-color: #9BBCE3;
}
.strut {
  display: inline-block;
  height: 100px;
}
于 2014-12-04T13:41:18.990 回答
2

Vanilla JS,在 Chrome、Firefox 和 Edge 上测试不需要字体信息:

function getBaselineHeight(el){
    let bottomY = el.getBoundingClientRect().bottom;//viewport pos of bottom of el
    
    let baselineLocator = document.createElement("img"); // needs to be an inline element without a baseline (so its bottom (not baseline) is used for alignment)
    el.appendChild(baselineLocator);

    baselineLocator.style.verticalAlign = 'baseline' ; // aligns bottom of baselineLocator with baseline of el
    let baseLineY = baselineLocator.getBoundingClientRect().bottom;//viewport pos of baseline
    el.removeChild(baselineLocator);
        
    return (bottomY - baseLineY) ;        
}

function positionLine(){
    let line = document.getElementById("line");
    let lorem = document.getElementById("lorem");
    let baselineHeight = getBaselineHeight(lorem);
    let newLinePos = lorem.getBoundingClientRect().bottom - baselineHeight ;
    line.style.top = newLinePos + "px" ;

}
#lorem{
    background-color: lightblue;
}
#line{
    position:absolute;
    left : 0 ;
    height:1px;
    width:100%
}
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" rel="stylesheet"/>
        <span id="lorem">Lorem ipsum dolor sit amet, consectetur adipiscing elit..</span>

        <br><br>

        <button class="btn btn-primary" onclick="positionLine();">position line on baseline</button>

        <br><br>

        <svg id="line">
            <line x1="0" y1="0" x2="100%" y2="0" style="stroke:rgb(255,0,0);stroke-width:1"></line>
        </svg> 

于 2019-05-24T13:54:15.823 回答