您的位置:首页 > 新闻 > 热点要闻 > 工程建设概况_企业网站源码破解版_淘宝店铺运营_百度一下首页网页手机版

工程建设概况_企业网站源码破解版_淘宝店铺运营_百度一下首页网页手机版

2025/1/11 7:10:04 来源:https://blog.csdn.net/lys20000913/article/details/143406084  浏览:    关键词:工程建设概况_企业网站源码破解版_淘宝店铺运营_百度一下首页网页手机版
工程建设概况_企业网站源码破解版_淘宝店铺运营_百度一下首页网页手机版

在这里插入图片描述
在这里插入图片描述

/** hooks* 用于文本展示时判断是否展示 展开/收起按钮 (包含监听 文本变化/页面尺寸变换)* @param { string } text 需要展示的文本* @param { number } maxLength 文本最大展示行数* @param { number } lineHeight 文本行高 (单位 px)
*/ 
import React, { useEffect, useRef, useState } from 'react';
export const TruncatedText = ({ text,lineHeight,maxLength }) => {// 用于判断目前展开与否const [isTruncated, setIsTruncated] = useState(true);//是否需要显示 展开收起按钮const [shouldShowMore, setShouldShowMore] = useState(false);const containerRef = useRef(null);useEffect(() => {const checkTruncation = () => {if (containerRef.current) {const { scrollHeight } = containerRef.current;setShouldShowMore(scrollHeight > lineHeight*maxLength);}}; checkTruncation(); // 初次检查// 监听页面缩放const resizeObserver = new ResizeObserver(checkTruncation);if (containerRef.current) {resizeObserver.observe(containerRef.current);}return () => {if (containerRef.current) {resizeObserver.unobserve(containerRef.current);}};}, [text]);const toggleTruncate = () => {setIsTruncated((prev) => !prev);};return (<divstyle={{position: 'relative',display: '-webkit-box',overflow: 'hidden',maxHeight: isTruncated ? `calc(${lineHeight}px * ${maxLength})` : 'none',transition: 'max-height 0.2s ease',fontSize: '14px',lineHeight: `${lineHeight}px`,}}><span ref={containerRef} style={{display:'inline-block'}} >{text}</span>{shouldShowMore && (<aonClick={toggleTruncate}style={{background: '#fff',position: 'absolute',bottom: 0,right: 0,}}>{isTruncated ? ' -展开' : '收起'}</a>)}</div>);
};

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com