'use client' import { useEffect, useState } from 'react' export function ScrollToTop() { const [isVisible, setIsVisible] = useState(false) // 检查滚动位置 const toggleVisibility = () => { if (window.pageYOffset > 300) { setIsVisible(true) } else { setIsVisible(false) } } // 滚动到顶部 const scrollToTop = () => { window.scrollTo({ top: 0, behavior: 'smooth' }) } useEffect(() => { window.addEventListener('scroll', toggleVisibility) return () => { window.removeEventListener('scroll', toggleVisibility) } }, []) return ( ) }