- 重构 Button、Card、Badge、Input、Textarea 等基础组件 - 新增 Accordion、Alert、Dialog、Dropdown、Form 等 shadcn/ui 组件 - 新增 AnimatedCounter、StatsShowcase、MetricCard 等数据展示组件 - 新增 ScrollReveal 滚动动画组件 - 重构 Toast 通知系统与 Tooltip 提示组件 - 更新设计令牌系统,对齐新品牌视觉
50 lines
1.7 KiB
TypeScript
50 lines
1.7 KiB
TypeScript
'use client';
|
|
|
|
import { useState, useEffect } from 'react';
|
|
import { motion, AnimatePresence } from 'framer-motion';
|
|
import { ArrowUp } from 'lucide-react';
|
|
import { useReducedMotion } from '@/hooks/use-reduced-motion';
|
|
|
|
export function BackToTop() {
|
|
const [isVisible, setIsVisible] = useState(false);
|
|
const shouldReduceMotion = useReducedMotion();
|
|
|
|
useEffect(() => {
|
|
const handleScroll = () => {
|
|
// 当滚动超过 500px 时显示按钮
|
|
setIsVisible(window.scrollY > 500);
|
|
};
|
|
|
|
window.addEventListener('scroll', handleScroll, { passive: true });
|
|
return () => window.removeEventListener('scroll', handleScroll);
|
|
}, []);
|
|
|
|
const scrollToTop = () => {
|
|
window.scrollTo({
|
|
top: 0,
|
|
behavior: shouldReduceMotion ? 'auto' : 'smooth',
|
|
});
|
|
};
|
|
|
|
return (
|
|
<AnimatePresence>
|
|
{isVisible && (
|
|
<motion.button
|
|
initial={shouldReduceMotion ? {} : { opacity: 0, y: 20, scale: 0.8 }}
|
|
animate={{ opacity: 1, y: 0, scale: 1 }}
|
|
exit={shouldReduceMotion ? {} : { opacity: 0, y: 20, scale: 0.8 }}
|
|
transition={{ duration: 0.2, ease: 'easeOut' }}
|
|
onClick={scrollToTop}
|
|
className="fixed right-4 bottom-20 md:bottom-8 md:right-8 z-40 p-3 bg-brand text-white hover:bg-brand-hover transition-all duration-300 ease-out focus:outline-none focus:ring-2 focus:ring-brand focus:ring-offset-2 focus:ring-offset-white"
|
|
aria-label="返回顶部"
|
|
title="返回顶部"
|
|
whileHover={shouldReduceMotion ? {} : { scale: 1.05 }}
|
|
whileTap={shouldReduceMotion ? {} : { scale: 0.95 }}
|
|
>
|
|
<ArrowUp className="w-6 h-6" />
|
|
</motion.button>
|
|
)}
|
|
</AnimatePresence>
|
|
);
|
|
}
|