如何按角度更改窗口大小的文本(不是文本大小)?

时间:2019-02-03 04:07:54

标签: angular

我想按 Angular 中的窗口大小显示文本摘要。表示按窗口大小显示整个段落的固定部分。
我使用自定义管道来手动固定屏幕上可见内容的大小

<p> {{ text | summary:50 }}

import { Pipe, PipeTransform } from '@angular/core';

@Pipe({
name: 'summary'
 })
 export class SummaryPipe implements PipeTransform {

transform(value: string, limit?: number) {
    if (!value) { return null; }

    const actuallimit = (limit) ? limit : 50;
    return value.substr(0, actuallimit) + '...';
}
}

因此,我想基于窗口大小传递参数,而不是固定参数(如50)。

我该怎么做?

1 个答案:

答案 0 :(得分:0)

您需要查看窗口大小才能完成此操作。请检查此以获取更多详细信息:https://stackoverflow.com/a/45350792/5346095