찾다

 >  Q&A  >  본문

javascript - 多行文本溢出出现省略号和[详情],如图

多行文本溢出出现省略号和[详情],如图,还要考虑ie7低版本浏览器。不知道怎么解决,百度查了,省略号没问题,就是后面的详情不知道怎么做,请指教

PHPzPHPz2777일 전718

모든 응답(2)나는 대답할 것이다

  • PHP中文网

    PHP中文网2017-04-10 15:36:33

    1.如果使用纯css实现的话,可以使用-webkit-line-clamp,但这个只支持webkit内核的。如下:

     overflow : hidden;
     text-overflow: ellipsis;
     display: -webkit-box;
     -webkit-line-clamp: 2;
     -webkit-box-orient: vertical;
    

    2.规定显示多少个字,然后截取显示。一般这样一段文字只示一点提示,显示部分也无所谓,后面有详情去查看。
    可以参考cnblogs的首页的做法。

    회신하다
    0
  • 阿神

    阿神2017-04-10 15:36:33

    这属于定制省略号问题,针对webkit内核可以借助-webkit-line-clampfloat实现,详细原理参考黑科技:CSS定制多行省略

    <!DOCTYPE html><html><body>
    <style>
    /*
     * 行高 h
     * 最大行数 n
     * ...更多容器的宽 w
     * 字号 f
     */
    
    @-webkit-keyframes width-change {0%,100%{width: 320px} 50%{width:260px}}
    .ellipsis {
        position: relative;
        background: rgb(230, 230, 230);
        width: 260px;
        max-height: 108px; /* h*n */
        line-height: 18px; /* h */
        overflow: hidden;
        -webkit-animation: width-change 8s ease infinite;
    }
    .ellipsis-container {
        position: relative;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 6; /* n */
        font-size: 50px; /* w */
        color: transparent;
    }
    .ellipsis-content {
        color: #000;
        display: inline;
        vertical-align: top;
        font-size: 12px; /* f */
    }
    .ellipsis-ghost {
        position:absolute;
        z-index: 1;
        top: 0;
        left: 50%;
        width: 100%;
        height: 100%;
        color: #000;
    }
    .ellipsis-ghost:before {
        content: "";
        display: block;
        float: right;
        width: 50%;
        height: 100%;
    }
    .ellipsis-placeholder {
        content: "";
        display: block;
        float: right;
        width: 50%;
        height: 108px; /* h*n */
    }
    .ellipsis-more {
        position: relative;
        float: right;
        font-size: 12px; /* f */
        width: 50px; /* w */
        height: 18px; /* h */
        margin-top: -18px; /* -h */
    }
    </style>
    <p class="ellipsis">
        <p class="ellipsis-container">
            <p class="ellipsis-content">腾讯成立于1998年11月,是目前中国领先的互联网增值服务提供商之一。成立10多年来,腾讯一直秉承“一切以用户价值为依归”的经营理念,为亿级海量用户提供稳定优质的各类服务,始终处于稳健发展状态。2004年6月16日,腾讯控股有限公司在香港联交所主板公开上市(股票代号700)。</p>
            <p class="ellipsis-ghost">
                <p class="ellipsis-placeholder"></p>
                <p class="ellipsis-more">...更多</p>
            </p>
        </p>
    </p>   
    </body></html>

    회신하다
    0
  • 취소회신하다