Прерывистое усечение с использованием Jquery.dotdotdot

Я использую jquery.dotdotdot для обрезания длинного текста на плитках на карусели. Усечение иногда прерывисто меньше, чем ожидаемый результат. (например, обрезать текст до 4 строк, но в какой-то момент он усекает только до 3 строк.)

В моем CSS формула, в которой у меня было 4 строки: Max-height = line-height * 4.

Ценю любой ответ. Благодарю. JS:

$(document).ready(function () { 
                EllipsisConfigFunction($(".module-body.dot-ellipsis"));

    function EllipsisConfigFunction($elements) {
        $elements.each(function () {
            var $element = $(this);
            $element.dotdotdot({
                // configuration goes here
                ellipsis: '... ',

                /*  How to cut off the text/html: 'word'/'letter'/'children' */
                wrap: 'word',

                /*  Wrap-option fallback to 'letter' for long words */
                fallbackToLetter: true,

                /*  jQuery-selector for the element to keep and put after the ellipsis. */
                after: null,

                /*  Whether to update the ellipsis: true/'window' */
                watch: true,

                /*  Optionally set a max-height, can be a number or function.
                    If null, the height will be measured. */
                height: null,

                /*  Deviation for the height-option. */
                tolerance: 0,

                /*  Callback function that is fired after the ellipsis is added,
                    receives two parameters: isTruncated(boolean), orgContent(string). */
                callback: function (isTruncated, orgContent) { },

                lastCharacter: {

                    /*  Remove these characters from the end of the truncated text. */
                    remove: [' ', ',', ';', '.', '!', '?'],

                    /*  Don't add an ellipsis if this array contains
                        the last character of the truncated text. */
                    noEllipsis: []
                }
            });
        });
    }
    });

CSS:

.module-body{
            max-height: 80px;
            overflow: hidden;
            position: relative;
            text-align: left;
            line-height:20px;
        }

1 ответ

Поскольку вы не разместили ни одного своего кода, мои лучшие предложения следующие:

https://css-tricks.com/snippets/css/truncate-string-with-ellipsis/
https://api.jquery.com/jQuery.trim/
http://stackru.com/a/4637957/5833940

Посмотрите, исправит ли это вашу проблему.

лучшие:)

Другие вопросы по тегам