オーバーフローが非表示のスパンにドット(「…」)を表示するにはどうすればよいですか?


166

私のCSS:

#content_right_head span
{
  display:inline-block;
  width:180px;
  overflow:hidden !important;
}

現在、コンテンツcontentを表示しています

でもコンテンツのように見せたい ...

コンテンツの後にドットを表示する必要があります。コンテンツはデータベースから動的に取得されます。

回答:


382

これにはtext-overflow: ellipsis;プロパティを使用できます。このように書く

span {
    display: inline-block;
    width: 180px;
    white-space: nowrap;
    overflow: hidden !important;
    text-overflow: ellipsis;
}
<span>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book</span>

JSFiddle


4
「幅」を「最大幅」に変更することをお勧めします
Amir Mog

4
レスポンシブレイアウトはどうですか?私の幅は固定されておらず、最大幅も固定されていません。
Jp_16年

1
次にonclickを使用してこれを拡張するにはどうすればよいですか?
Ankush Rishi

2
これはIE11およびFirefoxでは機能しません。これのための素晴らしい解決策はありますか?
techie_questie

19

text-overflow:ellipsisを使用している場合、ブラウザーはそのコンテナー内で可能な限りコンテンツを表示します。ただし、ドットの前の文字数を指定する場合、または一部のコンテンツを削除してドットを追加する場合は、以下の関数を使用できます。

function add3Dots(string, limit)
{
  var dots = "...";
  if(string.length > limit)
  {
    // you can also use substr instead of substring
    string = string.substring(0,limit) + dots;
  }

    return string;
}

のように呼ぶ

add3Dots("Hello World",9);

出力

Hello Wor...

こちらで実際にご覧ください

function add3Dots(string, limit)
{
  var dots = "...";
  if(string.length > limit)
  {
    // you can also use substr instead of substring
    string = string.substring(0,limit) + dots;
  }

    return string;
}



console.log(add3Dots("Hello, how are you doing today?", 10));



12

これを試して、

.truncate {
    display:inline-block;
    width:180px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.truncate要素にクラスを追加します。


編集

上記のソリューションは、すべてのブラウザで機能しているわけではありません。あなたはクロスブラウザサポートでjQueryプラグインを試すことができます。

(function ($) {
    $.fn.ellipsis = function () {
        return this.eachAsync({
            delay: 100,
            bulk: 0,
            loop: function (index) {
                var el = $(this);

                if (el.data("fullText") !== undefined) {
                    el.html(el.data("fullText"));
                } else {
                    el.data("fullText", el.html());
                }

                if (el.css("overflow") == "hidden") {
                    var text = el.html();
                    var t = $(this.cloneNode(true))
                                        .hide()
                                        .css('position', 'absolute')
                                        .css('overflow', 'visible')
                                        .width('auto')
                                        .height(el.height())
                                        ;

                    el.after(t);

                    function width() { return t.width() > el.width(); };

                    var func = width;
                    while (text.length > 0 && width()) {
                        text = text.substr(0, text.length - text.length * 25 / 100);
                        t.html(text + "...");
                    }

                    el.html(t.html());
                    t.remove();
                }
            }
        });
    };
})(jQuery);

呼び出す方法、

$("#content_right_head span").ellipsis();

widthプロパティは、することができます100%。次のようにすると良いと思います: .truncate { display:inline-block; width:100%; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
mahdi

4

まあ、「text-overflow:省略」は私にとってはうまくいきましたが、私の制限が「幅」に基づいている場合は、線に適用できるソリューションが必要です(「幅」ではなく「高さ」)私はこのスクリプトを行いました:

function listLimit (elm, line){
    var maxHeight = parseInt(elm.css('line-Height'))*line;

    while(elm.height() > maxHeight){
        var text = elm.text();
        elm.text(text.substring(0,text.length-10)).text(elm.text()+'...');
    }
}

そして、たとえば、私のh3に2行しかないことを必要とするときは、次のようにします。

$('h3').each(function(){
   listLimit ($(this), 2)
})

それがパフォーマンスニーズのベストプラクティスであるかどうかはわかりませんが、私にとってはうまくいきました。



0
 var tooLong = document.getElementById("longText").value;
    if (tooLong.length() > 18){
        $('#longText').css('text-overflow', 'ellipsis');
    }

-3

@sandeepの回答に感謝します。

私の問題は、マウスクリックでスパンのテキストを表示/非表示にすることでした。したがって、デフォルトではドットの付いた短いテキストが表示され、クリックすると長いテキストが表示されます。もう一度クリックすると、その長いテキストが非表示になり、短いテキストが再び表示されます。

非常に簡単なこと:text-overflow:ellipsisでクラスを追加/削除するだけです。

HTML:

<span class="spanShortText cursorPointer"  onclick="fInventoryShippingReceiving.ShowHideTextOnSpan(this);">Some really long description here</span>

CSS(@cursorPointerが追加された@sandeepと同じ)

.spanShortText {
  display: inline-block;
  width: 100px;
  white-space: nowrap;
  overflow: hidden !important;
  text-overflow: ellipsis;
}

.cursorPointer {
  cursor: pointer;
}

jQueryの部分-基本的に、クラスcSpanShortTextを削除/追加するだけです。

  function ShowHideTextOnSpan(element) {
    var cSpanShortText = 'spanShortText';
    var $el = $(element);
    if ($el.hasClass(cSpanShortText)) {
      $el.removeClass(cSpanShortText)
    } else {
      $el.addClass(cSpanShortText);
    }
  }
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.