我正在使用react-countup包,我想减慢对最后一个序列的计数,如下所示:see ref
怎么可能?我的代码看起来像rn
<div className="nox-number home-page-numbers-number">
<CountUp
decimals={isDecimal ? 1 : 0}
duration={1}
end={parsedNum}
onEnd={() => {
setActive(false)
}}
start={parsedNum > 10 ? parsedNum - 10 : 0}
>
{({ countUpRef, start }) => (
<VisibilitySensor
active={active}
delayedCall
onChange={(isVisible) =>
isVisible ? start() : null
}
>
<span ref={countUpRef} />
</VisibilitySensor>
)}
</CountUp>
{removeNumberFromString(number)}
</div>
1条答案
按热度按时间pw136qt21#
应将useEasing设置为true。