Skip to content

Instantly share code, notes, and snippets.

View flycran's full-sized avatar

flycran flycran

View GitHub Profile
@flycran
flycran / NumberAnimation.tsx
Last active May 9, 2025 11:23
实现一个基于motion/react的数字滚动效果
'use client'
import clsx from 'clsx'
import { animate, AnimationPlaybackControlsWithThen, motion, Transition } from 'motion/react'
import { HTMLAttributes, ReactNode, useEffect, useRef, useState } from 'react'
export interface NumberAnimationProps extends NumberScrollProps {
value?: number
format?: (value: number) => number | string
initial?: number
delay?: number