UNPKG

text-clamp

Version:

处理文字超出最大行数显示...

16 lines (15 loc) 544 B
export declare function clamp(element: HTMLElement, options?: ClampOptions): any; /** * 参数 * * @export * @interface ClampOptions */ export interface ClampOptions{ clamp?:number;//最大行数 useNativeClamp?:boolean;//是否修剪 splitOnChars?:string|string[]; //Split on sentences (periods), hypens, en-dashes, em-dashes, and words (spaces). animate?: boolean;//是否显示动画 truncationChar?: string;//修剪后显示的结束字符 truncationHTML?:string;//修剪后显示的结束HTML }